MCPcopy
hub / github.com/redis/redis-py / _send_command_parse_response

Method _send_command_parse_response

redis/client.py:759–764  ·  view source on GitHub ↗

Send a command and parse the response

(self, conn, command_name, *args, **options)

Source from the content-addressed store, hash-verified

757 self.connection_pool.disconnect()
758
759 def _send_command_parse_response(self, conn, command_name, *args, **options):
760 """
761 Send a command and parse the response
762 """
763 conn.send_command(*args, **options)
764 return self.parse_response(conn, command_name, **options)
765
766 def _close_connection(
767 self,

Callers 2

_execute_commandMethod · 0.95

Calls 2

parse_responseMethod · 0.95
send_commandMethod · 0.45

Tested by

no test coverage detected