1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
|
:mod:`aioredis` --- API Reference
=================================
.. highlight:: python3
.. module:: aioredis
.. _aioredis-connection:
Connection
----------
Redis Connection is the core function of the library.
Connection instances can be used as is or through
:ref:`pool<aioredis-pool>` or :ref:`high-level API<aioredis-redis>`.
Connection usage is as simple as:
.. code:: python
import asyncio
import aioredis
async def connect_uri():
conn = await aioredis.create_connection(
'redis://localhost/0')
val = await conn.execute('GET', 'my-key')
async def connect_tcp():
conn = await aioredis.create_connection(
('localhost', 6379))
val = await conn.execute('GET', 'my-key')
async def connect_unixsocket():
conn = await aioredis.create_connection(
'/path/to/redis/socket')
# or uri 'unix:///path/to/redis/socket?db=1'
val = await conn.execute('GET', 'my-key')
asyncio.get_event_loop().run_until_complete(connect_tcp())
asyncio.get_event_loop().run_until_complete(connect_unixsocket())
.. cofunction:: create_connection(address, \*, db=0, password=None, ssl=None,\
encoding=None, parser=None,\
timeout=None, connection_cls=None)
Creates Redis connection.
.. versionchanged:: v0.3.1
``timeout`` argument added.
.. versionchanged:: v1.0
``parser`` argument added.
.. deprecated:: v1.3.1
``loop`` argument deprecated for Python 3.8 compatibility.
:param address: An address where to connect.
Can be one of the following:
* a Redis URI --- ``"redis://host:6379/0?encoding=utf-8"``;
``"redis://:password@host:6379/0?encoding=utf-8"``;
* a (host, port) tuple --- ``('localhost', 6379)``;
* or a unix domain socket path string --- ``"/path/to/redis.sock"``.
:type address: tuple or str
:param int db: Redis database index to switch to when connected.
:param password: Password to use if redis server instance requires
authorization.
:type password: str or None
:param ssl: SSL context that is passed through to
:func:`asyncio.BaseEventLoop.create_connection`.
:type ssl: :class:`ssl.SSLContext` or True or None
:param encoding: Codec to use for response decoding.
:type encoding: str or None
:param parser: Protocol parser class. Can be used to set custom protocol
reader; expected same interface as :class:`hiredis.Reader`.
:type parser: callable or None
:param timeout: Max time to open a connection, otherwise
raise :exc:`asyncio.TimeoutError` exception.
``None`` by default
:type timeout: float greater than 0 or None
:param connection_cls: Custom connection class. ``None`` by default.
:type connection_cls: :class:`abc.AbcConnection` or None
:return: :class:`RedisConnection` instance.
.. class:: RedisConnection
Bases: :class:`abc.AbcConnection`
Redis connection interface.
.. attribute:: address
Redis server address; either IP-port tuple or unix socket str (*read-only*).
IP is either IPv4 or IPv6 depending on resolved host part in initial address.
.. versionadded:: v0.2.8
.. attribute:: db
Current database index (*read-only*).
.. attribute:: encoding
Current codec for response decoding (*read-only*).
.. attribute:: closed
Set to ``True`` if connection is closed (*read-only*).
.. attribute:: in_transaction
Set to ``True`` when MULTI command was issued (*read-only*).
.. attribute:: pubsub_channels
*Read-only* dict with subscribed channels.
Keys are bytes, values are :class:`~aioredis.Channel` instances.
.. attribute:: pubsub_patterns
*Read-only* dict with subscribed patterns.
Keys are bytes, values are :class:`~aioredis.Channel` instances.
.. attribute:: in_pubsub
Indicates that connection is in PUB/SUB mode.
Provides the number of subscribed channels. *Read-only*.
.. method:: execute(command, \*args, encoding=_NOTSET)
Execute Redis command.
The method is **not a coroutine** itself but instead it
writes to underlying transport and returns a :class:`asyncio.Future`
waiting for result.
:param command: Command to execute
:type command: str, bytes, bytearray
:param encoding: Keyword-only argument for overriding response decoding.
By default will use connection-wide encoding.
May be set to None to skip response decoding.
:type encoding: str or None
:raise TypeError: When any of arguments is None or
can not be encoded as bytes.
:raise aioredis.ReplyError: For redis error replies.
:raise aioredis.ProtocolError: When response can not be decoded
and/or connection is broken.
:return: Returns bytes or int reply (or str if encoding was set)
.. method:: execute_pubsub(command, \*channels_or_patterns)
Method to execute Pub/Sub commands.
The method is not a coroutine itself but returns a :func:`asyncio.gather()`
coroutine.
Method also accept :class:`aioredis.Channel` instances as command
arguments::
>>> ch1 = Channel('A', is_pattern=False)
>>> await conn.execute_pubsub('subscribe', ch1)
[[b'subscribe', b'A', 1]]
.. versionchanged:: v0.3
The method accept :class:`~aioredis.Channel` instances.
:param command: One of the following Pub/Sub commands:
``subscribe``, ``unsubscribe``,
``psubscribe``, ``punsubscribe``.
:type command: str, bytes, bytearray
:param \*channels_or_patterns: Channels or patterns to subscribe connection
to or unsubscribe from.
At least one channel/pattern is required.
:return: Returns a list of subscribe/unsubscribe messages,
ex::
>>> await conn.execute_pubsub('subscribe', 'A', 'B')
[[b'subscribe', b'A', 1], [b'subscribe', b'B', 2]]
.. method:: close()
Closes connection.
Mark connection as closed and schedule cleanup procedure.
All pending commands will be canceled with
:exc:`ConnectionForcedCloseError`.
.. method:: wait_closed()
Coroutine waiting for connection to get closed.
.. method:: select(db)
Changes current db index to new one.
:param int db: New redis database index.
:raise TypeError: When ``db`` parameter is not int.
:raise ValueError: When ``db`` parameter is less than 0.
:return True: Always returns True or raises exception.
.. method:: auth(password)
Send AUTH command.
:param str password: Plain-text password
:return bool: True if redis replied with 'OK'.
----
.. _aioredis-pool:
Connections Pool
----------------
The library provides connections pool. The basic usage is as follows:
.. code:: python
import aioredis
async def sample_pool():
pool = await aioredis.create_pool('redis://localhost')
val = await pool.execute('get', 'my-key')
.. _aioredis-create_pool:
.. function:: create_pool(address, \*, db=0, password=None, ssl=None, \
encoding=None, minsize=1, maxsize=10, \
parser=None, \
create_connection_timeout=None, \
pool_cls=None, connection_cls=None)
A :ref:`coroutine<coroutine>` that instantiates a pool of
:class:`~.RedisConnection`.
.. versionchanged:: v0.2.7
``minsize`` default value changed from 10 to 1.
.. versionchanged:: v0.2.8
Disallow arbitrary ConnectionsPool maxsize.
.. deprecated:: v0.2.9
*commands_factory* argument is deprecated and will be removed in *v1.0*.
.. versionchanged:: v0.3.2
``create_connection_timeout`` argument added.
.. versionchanged: v1.0
``commands_factory`` argument has been dropped.
.. versionadded:: v1.0
``parser``, ``pool_cls`` and ``connection_cls`` arguments added.
.. deprecated:: v1.3.1
``loop`` argument deprecated for Python 3.8 compatibility.
:param address: An address where to connect.
Can be one of the following:
* a Redis URI --- ``"redis://host:6379/0?encoding=utf-8"``;
* a (host, port) tuple --- ``('localhost', 6379)``;
* or a unix domain socket path string --- ``"/path/to/redis.sock"``.
:type address: tuple or str
:param int db: Redis database index to switch to when connected.
:param password: Password to use if redis server instance requires
authorization.
:type password: str or None
:param ssl: SSL context that is passed through to
:func:`asyncio.BaseEventLoop.create_connection`.
:type ssl: :class:`ssl.SSLContext` or True or None
:param encoding: Codec to use for response decoding.
:type encoding: str or None
:param int minsize: Minimum number of free connection to create in pool.
``1`` by default.
:param int maxsize: Maximum number of connection to keep in pool.
``10`` by default.
Must be greater than ``0``. ``None`` is disallowed.
:param parser: Protocol parser class. Can be used to set custom protocol
reader; expected same interface as :class:`hiredis.Reader`.
:type parser: callable or None
:param create_connection_timeout: Max time to open a connection,
otherwise raise an :exc:`asyncio.TimeoutError`. ``None`` by default.
:type create_connection_timeout: float greater than 0 or None
:param pool_cls: Can be used to instantiate custom pool class.
This argument **must be** a subclass of :class:`~aioredis.abc.AbcPool`.
:type pool_cls: aioredis.abc.AbcPool
:param connection_cls: Can be used to make pool instantiate custom
connection classes. This argument **must be** a subclass of
:class:`~aioredis.abc.AbcConnection`.
:type connection_cls: aioredis.abc.AbcConnection
:return: :class:`ConnectionsPool` instance.
.. class:: ConnectionsPool
Bases: :class:`abc.AbcPool`
Redis connections pool.
.. attribute:: minsize
A minimum size of the pool (*read-only*).
.. attribute:: maxsize
A maximum size of the pool (*read-only*).
.. attribute:: size
Current pool size --- number of free and used connections (*read-only*).
.. attribute:: freesize
Current number of free connections (*read-only*).
.. attribute:: db
Currently selected db index (*read-only*).
.. attribute:: encoding
Current codec for response decoding (*read-only*).
.. attribute:: closed
``True`` if pool is closed.
.. versionadded:: v0.2.8
.. method:: execute(command, \*args, \**kwargs)
Execute Redis command in a free connection and return
:class:`asyncio.Future` waiting for result.
This method tries to pick a free connection from pool and send
command through it at once (keeping pipelining feature provided
by :meth:`aioredis.RedisConnection.execute`).
If no connection is found --- returns coroutine waiting for free
connection to execute command.
.. versionadded:: v1.0
.. method:: execute_pubsub(command, \*channels)
Execute Redis (p)subscribe/(p)unsubscribe command.
``ConnectionsPool`` picks separate free connection for pub/sub
and uses it until pool is closed or connection is disconnected
(unsubscribing from all channels/pattern will leave connection
locked for pub/sub use).
There is no auto-reconnect for Pub/Sub connection as this will
hide from user messages loss.
Has similar to :meth:`execute` behavior, ie: tries to pick free
connection from pool and switch it to pub/sub mode; or fallback
to coroutine waiting for free connection and repeating operation.
.. versionadded:: v1.0
.. method:: get_connection(command, args=())
Gets free connection from pool returning tuple of (connection, address).
If no free connection is found -- None is returned in place of connection.
:rtype: tuple(:class:`RedisConnection` or None, str)
.. versionadded:: v1.0
.. comethod:: clear()
Closes and removes all free connections in the pool.
.. comethod:: select(db)
Changes db index for all free connections in the pool.
:param int db: New database index.
.. comethod:: acquire(command=None, args=())
Acquires a connection from *free pool*. Creates new connection if needed.
:param command: reserved for future.
:param args: reserved for future.
:raises aioredis.PoolClosedError: if pool is already closed
.. method:: release(conn)
Returns used connection back into pool.
When returned connection has db index that differs from one in pool
the connection will be dropped.
When queue of free connections is full the connection will be dropped.
.. note:: This method is **not a coroutine**.
:param aioredis.RedisConnection conn: A RedisConnection instance.
.. method:: close()
Close all free and in-progress connections and mark pool as closed.
.. versionadded:: v0.2.8
.. comethod:: wait_closed()
Wait until pool gets closed (when all connections are closed).
.. versionadded:: v0.2.8
----
.. _aioredis-exceptions:
Exceptions
----------
.. exception:: RedisError
:Bases: :exc:`Exception`
Base exception class for aioredis exceptions.
.. exception:: ProtocolError
:Bases: :exc:`RedisError`
Raised when protocol error occurs.
When this type of exception is raised connection must be considered
broken and must be closed.
.. exception:: ReplyError
:Bases: :exc:`RedisError`
Raised for Redis :term:`error replies`.
.. exception:: MaxClientsError
:Bases: :exc:`ReplyError`
Raised when maximum number of clients has been reached
(Redis server configured value).
.. exception:: AuthError
:Bases: :exc:`ReplyError`
Raised when authentication errors occur.
.. exception:: ConnectionClosedError
:Bases: :exc:`RedisError`
Raised if connection to server was lost/closed.
.. exception:: ConnectionForcedCloseError
:Bases: :exc:`ConnectionClosedError`
Raised if connection was closed with :func:`RedisConnection.close` method.
.. exception:: PipelineError
:Bases: :exc:`RedisError`
Raised from :meth:`~.commands.TransactionsCommandsMixin.pipeline`
if any pipelined command raised error.
.. exception:: MultiExecError
:Bases: :exc:`PipelineError`
Same as :exc:`~.PipelineError` but raised when executing multi_exec
block.
.. exception:: WatchVariableError
:Bases: :exc:`MultiExecError`
Raised if watched variable changed (EXEC returns None).
Subclass of :exc:`~.MultiExecError`.
.. exception:: ChannelClosedError
:Bases: :exc:`RedisError`
Raised from :meth:`aioredis.Channel.get` when Pub/Sub channel is
unsubscribed and messages queue is empty.
.. exception:: PoolClosedError
:Bases: :exc:`RedisError`
Raised from :meth:`aioredis.ConnectionsPool.acquire`
when pool is already closed.
.. exception:: ReadOnlyError
:Bases: :exc:`RedisError`
Raised from slave when read-only mode is enabled.
.. exception:: MasterNotFoundError
:Bases: :exc:`RedisError`
Raised by Sentinel client if it can not find requested master.
.. exception:: SlaveNotFoundError
:Bases: :exc:`RedisError`
Raised by Sentinel client if it can not find requested slave.
.. exception:: MasterReplyError
:Bases: :exc:`RedisError`
Raised if establishing connection to master failed with ``RedisError``,
for instance because of required or wrong authentication.
.. exception:: SlaveReplyError
:Bases: :exc:`RedisError`
Raised if establishing connection to slave failed with ``RedisError``,
for instance because of required or wrong authentication.
Exceptions Hierarchy
~~~~~~~~~~~~~~~~~~~~
.. code-block:: guess
Exception
RedisError
ProtocolError
ReplyError
MaxClientsError
AuthError
PipelineError
MultiExecError
WatchVariableError
ChannelClosedError
ConnectionClosedError
ConnectionForcedCloseError
PoolClosedError
ReadOnlyError
MasterNotFoundError
SlaveNotFoundError
MasterReplyError
SlaveReplyError
----
.. _aioredis-channel:
Pub/Sub Channel object
----------------------
`Channel` object is a wrapper around queue for storing received pub/sub messages.
.. class:: Channel(name, is_pattern)
Bases: :class:`abc.AbcChannel`
Object representing Pub/Sub messages queue.
It's basically a wrapper around :class:`asyncio.Queue`.
.. attribute:: name
Holds encoded channel/pattern name.
.. attribute:: is_pattern
Set to True for pattern channels.
.. attribute:: is_active
Set to True if there are messages in queue and connection is still
subscribed to this channel.
.. comethod:: get(\*, encoding=None, decoder=None)
Coroutine that waits for and returns a message.
Return value is message received or ``None`` signifying that channel has
been unsubscribed and no more messages will be received.
:param str encoding: If not None used to decode resulting bytes message.
:param callable decoder: If specified used to decode message,
ex. :func:`json.loads()`
:raise aioredis.ChannelClosedError: If channel is unsubscribed and
has no more messages.
.. method:: get_json(\*, encoding="utf-8")
Shortcut to ``get(encoding="utf-8", decoder=json.loads)``
.. comethod:: wait_message()
Waits for message to become available in channel
or channel is closed (unsubscribed).
Main idea is to use it in loops:
>>> ch = redis.channels['channel:1']
>>> while await ch.wait_message():
... msg = await ch.get()
:rtype: bool
.. comethod:: iter(, \*, encoding=None, decoder=None)
:async-for:
:coroutine:
Same as :meth:`~.get` method but it is a native coroutine.
Usage example::
>>> async for msg in ch.iter():
... print(msg)
.. versionadded:: 0.2.5
Available for Python 3.5 only
----
.. _aioredis-redis:
Commands Interface
------------------
The library provides high-level API implementing simple interface
to Redis commands.
The usage is as simple as:
.. code:: python
import aioredis
# Create Redis client bound to single non-reconnecting connection.
async def single_connection():
redis = await aioredis.create_redis(
'redis://localhost')
val = await redis.get('my-key')
# Create Redis client bound to connections pool.
async def pool_of_connections():
redis = await aioredis.create_redis_pool(
'redis://localhost')
val = await redis.get('my-key')
# we can also use pub/sub as underlying pool
# has several free connections:
ch1, ch2 = await redis.subscribe('chan:1', 'chan:2')
# publish using free connection
await redis.publish('chan:1', 'Hello')
await ch1.get()
For commands reference ---
see :ref:`commands mixins reference <aioredis-commands>`.
.. cofunction:: create_redis(address, \*, db=0, password=None, ssl=None,\
encoding=None, commands_factory=Redis,\
parser=None, timeout=None,\
connection_cls=None)
This :ref:`coroutine<coroutine>` creates high-level Redis
interface instance bound to single Redis connection
(without auto-reconnect).
.. versionadded:: v1.0
``parser``, ``timeout`` and ``connection_cls`` arguments added.
.. deprecated:: v1.3.1
``loop`` argument deprecated for Python 3.8 compatibility.
See also :class:`~aioredis.RedisConnection` for parameters description.
:param address: An address where to connect. Can be a (host, port) tuple,
unix domain socket path string or a Redis URI string.
:type address: tuple or str
:param int db: Redis database index to switch to when connected.
:param password: Password to use if Redis server instance requires
authorization.
:type password: str or bytes or None
:param ssl: SSL context that is passed through to
:func:`asyncio.BaseEventLoop.create_connection`.
:type ssl: :class:`ssl.SSLContext` or True or None
:param encoding: Codec to use for response decoding.
:type encoding: str or None
:param commands_factory: A factory accepting single parameter --
object implementing :class:`~abc.AbcConnection`
and returning an instance providing
high-level interface to Redis. :class:`Redis` by default.
:type commands_factory: callable
:param parser: Protocol parser class. Can be used to set custom protocol
reader; expected same interface as :class:`hiredis.Reader`.
:type parser: callable or None
:param timeout: Max time to open a connection, otherwise
raise :exc:`asyncio.TimeoutError` exception.
``None`` by default
:type timeout: float greater than 0 or None
:param connection_cls: Can be used to instantiate custom
connection class. This argument **must be** a subclass of
:class:`~aioredis.abc.AbcConnection`.
:type connection_cls: aioredis.abc.AbcConnection
:returns: Redis client (result of ``commands_factory`` call),
:class:`Redis` by default.
.. cofunction:: create_redis_pool(address, \*, db=0, password=None, ssl=None,\
encoding=None, commands_factory=Redis,\
minsize=1, maxsize=10,\
parser=None, timeout=None,\
pool_cls=None, connection_cls=None,\
)
This :ref:`coroutine<coroutine>` create high-level Redis client instance
bound to connections pool (this allows auto-reconnect and simple pub/sub
use).
See also :class:`~aioredis.ConnectionsPool` for parameters description.
.. versionchanged:: v1.0
``parser``, ``timeout``, ``pool_cls`` and ``connection_cls``
arguments added.
.. deprecated:: v1.3.1
``loop`` argument deprecated for Python 3.8 compatibility.
:param address: An address where to connect. Can be a (host, port) tuple,
unix domain socket path string or a Redis URI string.
:type address: tuple or str
:param int db: Redis database index to switch to when connected.
:param password: Password to use if Redis server instance requires
authorization.
:type password: str or bytes or None
:param ssl: SSL context that is passed through to
:func:`asyncio.BaseEventLoop.create_connection`.
:type ssl: :class:`ssl.SSLContext` or True or None
:param encoding: Codec to use for response decoding.
:type encoding: str or None
:param commands_factory: A factory accepting single parameter --
object implementing :class:`~abc.AbcConnection` interface
and returning an instance providing
high-level interface to Redis. :class:`Redis` by default.
:type commands_factory: callable
:param int minsize: Minimum number of connections to initialize
and keep in pool. Default is 1.
:param int maxsize: Maximum number of connections that can be created
in pool. Default is 10.
:param parser: Protocol parser class. Can be used to set custom protocol
reader; expected same interface as :class:`hiredis.Reader`.
:type parser: callable or None
:param timeout: Max time to open a connection, otherwise
raise :exc:`asyncio.TimeoutError` exception.
``None`` by default
:type timeout: float greater than 0 or None
:param pool_cls: Can be used to instantiate custom pool class.
This argument **must be** a subclass of :class:`~aioredis.abc.AbcPool`.
:type pool_cls: aioredis.abc.AbcPool
:param connection_cls: Can be used to make pool instantiate custom
connection classes. This argument **must be** a subclass of
:class:`~aioredis.abc.AbcConnection`.
:type connection_cls: aioredis.abc.AbcConnection
:returns: Redis client (result of ``commands_factory`` call),
:class:`Redis` by default.
|