Class: Gcstore

Gcstore()

new Gcstore()

Base class for a data store
Source:

Methods

(abstract) get(key)

Fetch data from this data store
Parameters:
Name Type Description
key string key, usage is subclass dependent
Source:

(abstract) init()

Initialize this data store. Will be executed during module:gcapp~Gcapp#init
Source:

(abstract) put(key, val)

Save data to this data store
Parameters:
Name Type Description
key string key, usage is subclass dependent
val Any value to save
Source:

(abstract) shutdown()

Shut down this data store
Source: