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

Method _send_command_parse_response

redis/asyncio/client.py:776–781  ·  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

774 await self.aclose(close_connection_pool)
775
776 async def _send_command_parse_response(self, conn, command_name, *args, **options):
777 """
778 Send a command and parse the response
779 """
780 await conn.send_command(*args)
781 return await self.parse_response(conn, command_name, **options)
782
783 async def _close_connection(
784 self,

Callers 2

execute_commandMethod · 0.95

Calls 2

parse_responseMethod · 0.95
send_commandMethod · 0.45

Tested by

no test coverage detected