← Return_Home

SANDBOX
INTEGRATION

Shared 16GB memory pool. Use this guide to test your ephemeral logic before provisioning a private cluster.

CRITICAL: This sandbox is shared memory pool. All keys are publicly readable. Do not store sensitive info. No production use.
01 / Protocol_Foundation

The HTTP Bridge

PandaCloud exposes Raw RAM via standard REST primitives. There are no proprietary drivers. Any environment capable of an HTTPS request can use the cache.

# SET: Standard Key-Value assignment
$ curl https://api.pandacloud.me/SET/{key}/{value}

# GET: Retrieve value from memory
$ curl https://api.pandacloud.me/GET/{key}

# DEL: Explicit memory release
$ curl https://api.pandacloud.me/DEL/{key}
02 / Atomic_Operations

Counters & Locks

Use atomic commands for distributed counters or rate-limiting. These operations are executed in a single cycle to prevent race conditions.

# INCR: Atomic increment by 1
$ curl https://api.pandacloud.me/INCR/global_hits
> 101

# DECR: Atomic decrement by 1
$ curl https://api.pandacloud.me/DECR/stock_count
> 99
03 / Volatility_Logic

Handling The Wipe

The "Sleep Cycle" is an intentional feature. If the cache is idle, the hardware sleeps and the memory clears. Your application logic should follow the "Cache-Aside" pattern:

  1. 1. Check PandaCloud for the key.
  2. 2. IF "null": Fetch from DB + SET back to PandaCloud.
  3. 3. IF "value": Return immediately (Sub-ms response).
04 / Advanced_Structures

Hashes & Lists

Store multi-field objects (Hashes) or manage background task flows (Lists).

# HASH: Store user profile
$ curl https://api.pandacloud.me/HSET/user_99/plan/pro

# LIST: Push to background queue
$ curl https://api.pandacloud.me/LPUSH/email_queue/welcome_msg