You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,7 @@ Installing
51
51
- ``pip install aiocache[memcached]``
52
52
- ``pip install aiocache[redis,memcached]``
53
53
- ``pip install aiocache[msgpack]``
54
+
- ``pip install aiocache[dill]``
54
55
55
56
56
57
Usage
@@ -168,7 +169,7 @@ How does it work
168
169
Aiocache provides 3 main entities:
169
170
170
171
- **backends**: Allow you specify which backend you want to use for your cache. Currently supporting: SimpleMemoryCache, RedisCache using aioredis_ and MemCache using aiomcache_.
171
-
- **serializers**: Serialize and deserialize the data between your code and the backends. This allows you to save any Python object into your cache. Currently supporting: StringSerializer, PickleSerializer, JsonSerializer, and MsgPackSerializer. But you can also build custom ones.
172
+
- **serializers**: Serialize and deserialize the data between your code and the backends. This allows you to save any Python object into your cache. Currently supporting: StringSerializer, PickleSerializer, JsonSerializer, MsgPackSerializer and DillSerializer. But you can also build custom ones.
172
173
- **plugins**: Implement a hooks system that allows to execute extra behavior before and after of each command.
173
174
174
175
If you are missing an implementation of backend, serializer or plugin you think it could be interesting for the package, do not hesitate to open a new issue.
In case the current serializers are not covering your needs, you can always define your custom serializer as shown in ``examples/serializer_class.py``:
0 commit comments