PHP MatthiasMullie\Scrapbook\Buffered Namespace

Nested Namespaces

MatthiasMullie\Scrapbook\Buffered\Utils

Classes

Name Description
BufferedStore This class will serve as a local buffer to the real cache: anything read from & written to the real cache will be stored in memory, so if any of those keys is again requested in the same request, we can just grab it from memory instead of having to get it over the wire.
TransactionalStore In addition to buffering cache data in memory (see BufferedStore), this class will add transactional capabilities. Writes can be deferred by starting a transaction & all of them will only go out when you commit them.