File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed
Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -92,12 +92,21 @@ Install 3rd party compression
9292
9393 .. code-block :: console
9494
95- python -m pip install django-valkey[zstd] # not need since python 3.14
95+ python -m pip install django-valkey[zstd] # not needed since python 3.14
9696
9797 .. code-block :: console
9898
9999 python -m pip install django-valkey[brotli]
100100
101+ Install with 3rd party serializers
102+
103+ .. code-block :: console
104+
105+ python -m pip install django-valkey[msgpack]
106+
107+ .. code-block :: console
108+
109+ python -m pip install django-valkey[msgspec]
101110
102111
103112
Original file line number Diff line number Diff line change @@ -22,6 +22,12 @@ pip install django-valkey[libvalkey]
2222pip install django-valkey[msgpack]
2323```
2424
25+ ### Install with msgspec serializer:
26+
27+ ``` shell
28+ pip install django-valkey[msgspec]
29+ ```
30+
2531## Install with 3rd party compression libraries:
2632
2733### lz4 library:
@@ -30,10 +36,10 @@ pip install django-valkey[msgpack]
3036pip install django-valkey[lz4]
3137```
3238
33- ### pyzstd library:
39+ ### zstd library:
3440
3541``` shell
36- pip install django-valkey[pyzstd]
42+ pip install django-valkey[zstd] # only needed before python 3.14
3743```
3844
3945### brotli library:
@@ -44,4 +50,4 @@ pip install django-valkey[brotli]
4450
4551## Coming from django-redis?
4652
47- check out our migration guide [ Migration from django-redis] ( migration_from_django_redis.md )
53+ check out our migration guide [ Migration from django-redis] ( migration_from_django_redis.md )
You can’t perform that action at this time.
0 commit comments