summary refs log tree commit diff
path: root/changelog.d/16429.misc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 1.95.0rc1Patrick Cloke2023-10-171-1/+0
|
* Remove manys calls to cursor_to_dict (#16431)Patrick Cloke2023-10-051-1/+1
| | | | | | | | | | This avoids calling cursor_to_dict and then immediately unpacking the values in the dict for other users. By not creating the intermediate dictionary we can avoid allocating the dictionary and strings for the keys, which should generally be more performant. Additionally this improves type hints by avoid Dict[str, Any] dictionaries coming out of the database layer.
* Add __slots__ to replication commands. (#16429)Patrick Cloke2023-10-051-0/+1
To slightly reduce the amount of memory each command takes.