Skip to content

Commit 13c2b4f

Browse files
committed
update installation guides
1 parent d69a0a7 commit 13c2b4f

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

README.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff 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

docs/installation.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ pip install django-valkey[libvalkey]
2222
pip 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]
3036
pip 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)

0 commit comments

Comments
 (0)