Bodge.app

global storage

This table takes arbitrary fields, storing and retreving them in an external key/value store. The KV store is shared across all scripts in a domain.

Examples

print(storage.foo) -- prints nothing the first time, then prints "bar"
storage.foo = "bar"
print(storage.foo) -- prints "bar"