Learn

Storage

Storage is a persistent key-value store for your server. Scripts can use it to remember a counter, configuration value, or member state between runs.

Use the storage tags in a script to read, write, and remove values. For example, an action can update a counter with {store.set} and another action can read it later with {store.get}. Values belong to the server, not to a single action or user, so choose descriptive keys and avoid using the same key for unrelated features.

The Storage page lets server managers inspect, search, edit, create, and delete values without running a script.

Storage has a limit on the number of keys and the byte size of each value. These limits vary by plan. See Limits. Storage tags also count towards script tag limits.