Page Speed Optimization Libraries
1.4.26.1
|
#include "cache_copy.h"
Public Member Functions | |
CacheCopy (CacheInterface *cache) | |
Does *not* take ownership of the cache passed in. | |
virtual void | Get (const GoogleString &key, Callback *callback) |
virtual void | Put (const GoogleString &key, SharedString *value) |
virtual void | Delete (const GoogleString &key) |
virtual const char * | Name () const |
The name of this CacheInterface -- used for logging and debugging. | |
virtual CacheInterface * | Backend () |
virtual void | MultiGet (MultiGetRequest *request) |
virtual bool | IsBlocking () const |
virtual bool | IsHealthy () const |
virtual void | ShutDown () |
Makes a new cache object based on an existing one, adding no new functionality. This is used for memory management purposes only, so that a cache can be shared between multiple consumers that each want to take ownership.
virtual CacheInterface* net_instaweb::CacheCopy::Backend | ( | ) | [inline, virtual] |
If this cache is merely a wrapper around a backend that actually does all the work, returns that backend cache object. Otherwise just returns 'this'. Used for testing.
Reimplemented from net_instaweb::CacheInterface.
virtual void net_instaweb::CacheCopy::Get | ( | const GoogleString & | key, |
Callback * | callback | ||
) | [inline, virtual] |
Initiates a cache fetch, calling callback->ValidateCandidate() and then callback->Done(state) when done.
Note: implementations should normally invoke the callback via ValidateAndReportResult, which will combine ValidateCandidate() and Done() together properly.
Implements net_instaweb::CacheInterface.
virtual bool net_instaweb::CacheCopy::IsBlocking | ( | ) | const [inline, virtual] |
Returns true if this cache is guaranteed to call its callbacks before returning from Get and MultiGet.
Implements net_instaweb::CacheInterface.
virtual bool net_instaweb::CacheCopy::IsHealthy | ( | ) | const [inline, virtual] |
Returns true if the cache is in a healthy state. Memory and file-based caches can simply return 'true'. But for server-based caches, it is handy to be able to query to see whether it is in a good state. It should be safe to call this frequently -- the implementation shouldn't do much more than check a bool flag under mutex.
Implements net_instaweb::CacheInterface.
virtual void net_instaweb::CacheCopy::MultiGet | ( | MultiGetRequest * | request | ) | [inline, virtual] |
Gets multiple keys, calling multiple callbacks. Default implementation simply loops over all the keys and calls Get.
MultiGetRequest, declared above, is a vector of structs of keys and callbacks.
Ownership of the request is transferred to this function.
Reimplemented from net_instaweb::CacheInterface.
virtual void net_instaweb::CacheCopy::Put | ( | const GoogleString & | key, |
SharedString * | value | ||
) | [inline, virtual] |
Puts a value into the cache. The value that is passed in is not modified, but the SharedString is passed by non-const pointer because its reference count is bumped.
Implements net_instaweb::CacheInterface.
virtual void net_instaweb::CacheCopy::ShutDown | ( | ) | [inline, virtual] |
Stops all cache activity. Further Put/Delete calls will be dropped, and MultiGet/Get will call the callback with kNotFound immediately. Note there is no Enable(); once the cache is stopped it is stopped forever. This function is intended for use during process shutdown.
Implements net_instaweb::CacheInterface.