Sha256: 9ea56454ab8007aeaf46896b6a62bae4bdd7b988bbc507db433dde4c45649230

Contents?: true

Size: 1.15 KB

Versions: 16

Compression:

Stored size: 1.15 KB

Contents

#Persist (persist.js)
Persistance management. Loosely based on redis.

###Driver messages
`if_per_set(ns, key, value)` - Set a key and value
`if_per_get(s, ns, key)` - Get a key's value, a message `int_get_res` will be sent back, `s` is the session key that will also be sent back. If there is no key, `null` will be sent back.
`if_per_del(ns, key)` - Delete a particular key
`if_per_del_ns(ns)` - Delete an entire namespace

###TODO driver messages
`if_per_set_f(ns, key, tp)` - Tell the driver to dereference the telepointer and to save it to disk.

For race conditions, e.g, an asynchronous set is followed by a synchronous get, it is undefined as to what that behavior that will be.
It is expected that the kernel should manage the write-back cache and that the driver should not attempt a write back cache unless
it is convenient to do so.

###Kernel interrupts
`int_per_get_res(s, ns, id, res)` - A response retrieved from `if_per_get` that contains the session key and result dictionary. Currently,
the service `vm` owns this function; so session does not have an effect on the outcome; but the string `"vm"` should be used for now for any
session keys involving persist.

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
flok-0.0.82 docs/mod/persist.md
flok-0.0.81 docs/mod/persist.md
flok-0.0.80 docs/mod/persist.md
flok-0.0.79 docs/mod/persist.md
flok-0.0.78 docs/mod/persist.md
flok-0.0.77 docs/mod/persist.md
flok-0.0.76 docs/mod/persist.md
flok-0.0.75 docs/mod/persist.md
flok-0.0.74 docs/mod/persist.md
flok-0.0.73 docs/mod/persist.md
flok-0.0.72 docs/mod/persist.md
flok-0.0.71 docs/mod/persist.md
flok-0.0.70 docs/mod/persist.md
flok-0.0.69 docs/mod/persist.md
flok-0.0.68 docs/mod/persist.md
flok-0.0.67 docs/mod/persist.md