Skip to content

Commit b9f1b6d

Browse files
Merge pull request #86 from 93578237/93578237-patch-1
docs: Fix serializer import path
2 parents e56f762 + 5606cad commit b9f1b6d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/configure/advanced_configurations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ CACHES = {
191191
"default": {
192192
# ...
193193
"OPTIONS": {
194-
"SERIALIZER": "django_valkey.serializer.json.JSONSerializer",
194+
"SERIALIZER": "django_valkey.serializers.json.JSONSerializer",
195195
# ...
196196
}
197197
}
@@ -215,7 +215,7 @@ CACHES = {
215215
"default": {
216216
# ...
217217
"OPTIONS": {
218-
"SERIALIZER": "django_valkey.serializer.msgpack.MSGPackSerializer",
218+
"SERIALIZER": "django_valkey.serializers.msgpack.MSGPackSerializer",
219219
# ...
220220
}
221221
}
@@ -240,7 +240,7 @@ CACHES = {
240240
"default": {
241241
# ...
242242
"OPTIONS": {
243-
"SERIALIZER": "django_valkey.serializer.msgspec.MsgSpecJsonSerializer",
243+
"SERIALIZER": "django_valkey.serializers.msgspec.MsgSpecJsonSerializer",
244244
# ...
245245
}
246246
}
@@ -254,7 +254,7 @@ CACHES = {
254254
"default": {
255255
# ...
256256
"OPTIONS": {
257-
"SERIALIZER": "django_valkey.serializer.msgspec.MsgSpecMsgPackSerializer",
257+
"SERIALIZER": "django_valkey.serializers.msgspec.MsgSpecMsgPackSerializer",
258258
# ...
259259
}
260260
}

0 commit comments

Comments
 (0)