Last updated
Last updated
Using marshallers will allow you to serialize the cache values differently.
This marshaller will use php's native serialize
and unserialize
functions on the values.
The json marshaller will use php's native json_encode
and json_decode
functions to serialize data.
You can create a custom marshaller. For example, you could create one the encrypts/decrypts the values.