libvalkey 4.0.1


pip install libvalkey

  Latest version

Released: Nov 26, 2024


Meta
Author: libvalkey-py authors
Requires Python: >=3.8

Classifiers

Development Status
  • 5 - Production/Stable

Intended Audience
  • Developers

License
  • OSI Approved :: MIT License

Operating System
  • MacOS
  • POSIX

Programming Language
  • C
  • Python :: 3
  • Python :: 3 :: Only
  • Python :: 3.8
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12
  • Python :: 3.13
  • Python :: Implementation :: CPython

Topic
  • Software Development

libvalkey-py

Build Status License pypi

Python extension that wraps protocol parsing code in libvalkey. It primarily speeds up parsing of multi bulk replies.

Install

libvalkey-py is available on PyPI, and can be installed via:

pip install libvalkey

Building and Testing

Building this repository requires a recursive checkout of submodules, and building libvalkey. The following example shows how to clone, compile, and run tests. Please note - you will need the gcc installed.

git clone --recurse-submodules https://github.com/valkey-io/libvalkey-py
python setup.py build_ext --inplace
python -m pytest

Requirements

libvalkey-py requires Python 3.8+.

Make sure Python development headers are available when installing libvalkey-py. On Ubuntu/Debian systems, install them with apt-get install python3-dev.

Usage

The libvalkey module contains the Reader class. This class is responsible for parsing replies from the stream of data that is read from a Redis connection. It does not contain functionality to handle I/O.

Reply parser

The Reader class has two methods that are used when parsing replies from a stream of data. Reader.feed takes a string argument that is appended to the internal buffer. Reader.gets reads this buffer and returns a reply when the buffer contains a full reply. If a single call to feed contains multiple replies, gets should be called multiple times to extract all replies.

Example:

>>> reader = libvalkey.Reader()
>>> reader.feed("$5\r\nhello\r\n")
>>> reader.gets()
b'hello'

When the buffer does not contain a full reply, gets returns False. This means extra data is needed and feed should be called again before calling gets again. Alternatively you could provide custom sentinel object via parameter, which is useful for RESP3 protocol where native boolean types are supported:

Example:

>>> reader.feed("*2\r\n$5\r\nhello\r\n")
>>> reader.gets()
False
>>> reader.feed("$5\r\nworld\r\n")
>>> reader.gets()
[b'hello', b'world']
>>> reader = libvalkey.Reader(notEnoughData=Ellipsis)
>>> reader.gets()
Ellipsis

Unicode

libvalkey.Reader is able to decode bulk data to any encoding Python supports. To do so, specify the encoding you want to use for decoding replies when initializing it:

>>> reader = libvalkey.Reader(encoding="utf-8", errors="strict")
>>> reader.feed(b"$3\r\n\xe2\x98\x83\r\n")
>>> reader.gets()
'☃'

Decoding of bulk data will be attempted using the specified encoding and error handler. If the error handler is 'strict' (the default), a UnicodeDecodeError is raised when data cannot be dedcoded. This is identical to Python's default behavior. Other valid values to errors include 'replace', 'ignore', and 'backslashreplace'. More information on the behavior of these error handlers can be found here.

When the specified encoding cannot be found, a LookupError will be raised when calling gets for the first reply with bulk data.

Error handling

When a protocol error occurs (because of multiple threads using the same socket, or some other condition that causes a corrupt stream), the error libvalkey.ProtocolError is raised. Because the buffer is read in a lazy fashion, it will only be raised when gets is called and the first reply in the buffer contains an error. There is no way to recover from a faulty protocol state, so when this happens, the I/O code feeding data to Reader should probably reconnect.

The server can reply with error replies (-ERR ...). For these replies, the custom error class libvalkey.ReplyError is returned, but not raised.

When other error types should be used (so existing code doesn't have to change its except clauses), Reader can be initialized with the protocolError and replyError keywords. These keywords should contain a class that is a subclass of Exception. When not provided, Reader will use the default error types.

Benchmarks

The repository contains a benchmarking script in the benchmark directory, which uses gevent to have non-blocking I/O and valkey-py to handle connections. These benchmarks are done with a patched version of valkey-py that uses libvalkey-py when it is available.

All benchmarks are done with 10 concurrent connections.

  • SET key value + GET key
    • valkey-py: 11.76 Kops
    • valkey-py with libvalkey-py: 13.40 Kops
    • improvement: 1.1x

List entries in the following tests are 5 bytes.

  • LRANGE list 0 9:
    • valkey-py: 4.78 Kops
    • valkey-py with libvalkey-py: 12.94 Kops
    • improvement: 2.7x
  • LRANGE list 0 99:
    • valkey-py: 0.73 Kops
    • valkey-py with libvalkey-py: 11.90 Kops
    • improvement: 16.3x
  • LRANGE list 0 999:
    • valkey-py: 0.07 Kops
    • valkey-py with libvalkey-py: 5.83 Kops
    • improvement: 83.2x

Throughput improvement for simple SET/GET is minimal, but the larger multi bulk replies get, the larger the performance improvement is.

License

This code is released under the BSD license, as the license of hiredis-py at the time of fork.

Wheel compatibility matrix

Platform CPython 3.8 CPython 3.9 CPython 3.10 CPython 3.11 CPython 3.12 CPython 3.13 PyPy 3.8 (pp73) PyPy 3.9 (pp73) PyPy 3.10 (pp73)
macosx_11_0_arm64
macosx_11_0_universal2
macosx_11_0_x86_64
manylinux2014_aarch64
manylinux2014_i686
manylinux2014_ppc64le
manylinux2014_s390x
manylinux2014_x86_64
manylinux_2_17_aarch64
manylinux_2_17_i686
manylinux_2_17_ppc64le
manylinux_2_17_s390x
manylinux_2_17_x86_64
musllinux_1_2_aarch64
musllinux_1_2_i686
musllinux_1_2_ppc64le
musllinux_1_2_s390x
musllinux_1_2_x86_64
win32
win_amd64

Files in release

libvalkey-4.0.1-cp310-cp310-macosx_11_0_arm64.whl (42.0KiB)
libvalkey-4.0.1-cp310-cp310-macosx_11_0_universal2.whl (80.2KiB)
libvalkey-4.0.1-cp310-cp310-macosx_11_0_x86_64.whl (43.7KiB)
libvalkey-4.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (166.1KiB)
libvalkey-4.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (161.7KiB)
libvalkey-4.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (177.5KiB)
libvalkey-4.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (166.7KiB)
libvalkey-4.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (166.3KiB)
libvalkey-4.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (160.9KiB)
libvalkey-4.0.1-cp310-cp310-musllinux_1_2_i686.whl (159.0KiB)
libvalkey-4.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl (172.1KiB)
libvalkey-4.0.1-cp310-cp310-musllinux_1_2_s390x.whl (163.8KiB)
libvalkey-4.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (161.6KiB)
libvalkey-4.0.1-cp310-cp310-win32.whl (19.0KiB)
libvalkey-4.0.1-cp310-cp310-win_amd64.whl (20.9KiB)
libvalkey-4.0.1-cp311-cp311-macosx_11_0_arm64.whl (42.0KiB)
libvalkey-4.0.1-cp311-cp311-macosx_11_0_universal2.whl (80.2KiB)
libvalkey-4.0.1-cp311-cp311-macosx_11_0_x86_64.whl (43.7KiB)
libvalkey-4.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (166.2KiB)
libvalkey-4.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (161.5KiB)
libvalkey-4.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (177.6KiB)
libvalkey-4.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (166.7KiB)
libvalkey-4.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (166.5KiB)
libvalkey-4.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (160.9KiB)
libvalkey-4.0.1-cp311-cp311-musllinux_1_2_i686.whl (159.0KiB)
libvalkey-4.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl (172.1KiB)
libvalkey-4.0.1-cp311-cp311-musllinux_1_2_s390x.whl (163.8KiB)
libvalkey-4.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (161.6KiB)
libvalkey-4.0.1-cp311-cp311-win32.whl (19.0KiB)
libvalkey-4.0.1-cp311-cp311-win_amd64.whl (20.9KiB)
libvalkey-4.0.1-cp312-cp312-macosx_11_0_arm64.whl (42.0KiB)
libvalkey-4.0.1-cp312-cp312-macosx_11_0_universal2.whl (80.3KiB)
libvalkey-4.0.1-cp312-cp312-macosx_11_0_x86_64.whl (43.8KiB)
libvalkey-4.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (169.3KiB)
libvalkey-4.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (164.0KiB)
libvalkey-4.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (180.0KiB)
libvalkey-4.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (169.4KiB)
libvalkey-4.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.5KiB)
libvalkey-4.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (163.2KiB)
libvalkey-4.0.1-cp312-cp312-musllinux_1_2_i686.whl (161.1KiB)
libvalkey-4.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl (174.7KiB)
libvalkey-4.0.1-cp312-cp312-musllinux_1_2_s390x.whl (166.4KiB)
libvalkey-4.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (164.2KiB)
libvalkey-4.0.1-cp312-cp312-win32.whl (19.2KiB)
libvalkey-4.0.1-cp312-cp312-win_amd64.whl (20.9KiB)
libvalkey-4.0.1-cp313-cp313-macosx_11_0_arm64.whl (42.1KiB)
libvalkey-4.0.1-cp313-cp313-macosx_11_0_universal2.whl (80.3KiB)
libvalkey-4.0.1-cp313-cp313-macosx_11_0_x86_64.whl (43.8KiB)
libvalkey-4.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (169.1KiB)
libvalkey-4.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (164.3KiB)
libvalkey-4.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (180.0KiB)
libvalkey-4.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (169.2KiB)
libvalkey-4.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.4KiB)
libvalkey-4.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (163.1KiB)
libvalkey-4.0.1-cp313-cp313-musllinux_1_2_i686.whl (161.1KiB)
libvalkey-4.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl (174.7KiB)
libvalkey-4.0.1-cp313-cp313-musllinux_1_2_s390x.whl (166.4KiB)
libvalkey-4.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (164.2KiB)
libvalkey-4.0.1-cp313-cp313-win32.whl (19.2KiB)
libvalkey-4.0.1-cp313-cp313-win_amd64.whl (21.0KiB)
libvalkey-4.0.1-cp38-cp38-macosx_11_0_arm64.whl (42.0KiB)
libvalkey-4.0.1-cp38-cp38-macosx_11_0_universal2.whl (80.2KiB)
libvalkey-4.0.1-cp38-cp38-macosx_11_0_x86_64.whl (43.7KiB)
libvalkey-4.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (168.5KiB)
libvalkey-4.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (163.2KiB)
libvalkey-4.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (179.5KiB)
libvalkey-4.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (168.9KiB)
libvalkey-4.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (168.6KiB)
libvalkey-4.0.1-cp38-cp38-musllinux_1_2_aarch64.whl (161.7KiB)
libvalkey-4.0.1-cp38-cp38-musllinux_1_2_i686.whl (159.7KiB)
libvalkey-4.0.1-cp38-cp38-musllinux_1_2_ppc64le.whl (172.8KiB)
libvalkey-4.0.1-cp38-cp38-musllinux_1_2_s390x.whl (164.7KiB)
libvalkey-4.0.1-cp38-cp38-musllinux_1_2_x86_64.whl (162.3KiB)
libvalkey-4.0.1-cp38-cp38-win32.whl (19.0KiB)
libvalkey-4.0.1-cp38-cp38-win_amd64.whl (20.9KiB)
libvalkey-4.0.1-cp39-cp39-macosx_11_0_arm64.whl (42.0KiB)
libvalkey-4.0.1-cp39-cp39-macosx_11_0_universal2.whl (80.2KiB)
libvalkey-4.0.1-cp39-cp39-macosx_11_0_x86_64.whl (43.7KiB)
libvalkey-4.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (165.6KiB)
libvalkey-4.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (161.0KiB)
libvalkey-4.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (176.9KiB)
libvalkey-4.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (166.1KiB)
libvalkey-4.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (165.8KiB)
libvalkey-4.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (160.4KiB)
libvalkey-4.0.1-cp39-cp39-musllinux_1_2_i686.whl (158.5KiB)
libvalkey-4.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl (171.5KiB)
libvalkey-4.0.1-cp39-cp39-musllinux_1_2_s390x.whl (163.3KiB)
libvalkey-4.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (161.1KiB)
libvalkey-4.0.1-cp39-cp39-win32.whl (19.0KiB)
libvalkey-4.0.1-cp39-cp39-win_amd64.whl (20.9KiB)
libvalkey-4.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (36.3KiB)
libvalkey-4.0.1-pp310-pypy310_pp73-macosx_11_0_x86_64.whl (38.7KiB)
libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.6KiB)
libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (54.9KiB)
libvalkey-4.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (47.8KiB)
libvalkey-4.0.1-pp310-pypy310_pp73-win_amd64.whl (20.9KiB)
libvalkey-4.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (36.4KiB)
libvalkey-4.0.1-pp38-pypy38_pp73-macosx_11_0_x86_64.whl (38.7KiB)
libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.6KiB)
libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (55.0KiB)
libvalkey-4.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (47.8KiB)
libvalkey-4.0.1-pp38-pypy38_pp73-win_amd64.whl (20.9KiB)
libvalkey-4.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (36.3KiB)
libvalkey-4.0.1-pp39-pypy39_pp73-macosx_11_0_x86_64.whl (38.7KiB)
libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.6KiB)
libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (54.9KiB)
libvalkey-4.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (47.7KiB)
libvalkey-4.0.1-pp39-pypy39_pp73-win_amd64.whl (20.9KiB)
libvalkey-4.0.1.tar.gz (106.5KiB)
No dependencies