Actix storage is a simple wrapper around some key-value storages to provide basic operations without knowing the backend in advance.
There are times you're writing an actix-web handler and you need a key-value storage to store some state or cache some value, but you don't know what kind of storage you're gonna need in advance, generally:
If you really care about every drop of your application performance then actix-storage may not be for you, as it uses dynamic dispatching internally.
There are bunch of examples in the examples
folder, very basic ones thought, but it will give you the idea.
This project is licensed under either of
at your option.