fix memcache usage #18

Merged
remoll merged 1 commits from fix/backend-usable-memcached into main 2024-08-24 15:45:48 +00:00
Showing only changes of commit e951032f11 - Show all commits

View File

@ -1,4 +1,5 @@
from pymemcache.client.base import Client
from pymemcache import serde
import constants
@ -22,5 +23,6 @@ else:
constants.MEMCACHED_HOST_PATH,
timeout=1,
allow_unicode_keys=True,
encoding='utf-8'
encoding='utf-8',
serde=serde.pickle_serde
)