Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DOCacheAdapter ¶
type DOCacheAdapter interface { // Init source InitSource() error // CO methods Put(data interface{}) error GetFromCacheable(cacheable MakeCacheable) (interface{}, error) MGetFromCacheable(cacheables []MakeCacheable) (*[]interface{}, error) GetFromKey(key string, dataType interface{}) (interface{}, error) RemoveFromCacheable(cacheable MakeCacheable) (bool, error) // Index methods AddValueToIndexKey(indexkey *string, value MakeSerializable, indexname string) error GetValuesFromIndexKey(indexkey *string, dataType MakeSerializable, indexname string) (interface{}, error) RemoveValueFromIndexKey(indexkey *string, value MakeSerializable, indexname *string) error RemoveIndexKey(indexkey, indexname *string) error Close() error // contains filtered or unexported methods }
----------- Cache Adapter interface
var DOCache DOCacheAdapter
Click to show internal directories.
Click to hide internal directories.