Shared 16GB memory pool. Use this guide to test your ephemeral logic before provisioning a private cluster.
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}
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
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:
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