Memory Store Queue

I’ve been perusing through the Roblox docs about Memory Stores and I’m still not quite sure I understand them. Do Memory Stores persist even after all the servers are down? I’m trying to make a game where players can add items to a queue, but I want that queue to be experience-wide instead of just server-wide. The queues also can’t clear after all the servers are shutdown.

TL;DR I just need to know if Memory Stores stay even after all servers are down. Thanks :slight_smile:

1 Like

Yes, MemoryStore objects persist even after every server in your experience is down. These are stored on Roblox’s servers and will not get removed unless Roblox servers are down.

There is an OpenCloud API to clear every MemoryStore object’s data if you’d like
https://create.roblox.com/docs/cloud/reference/MemoryStore#Flush-Memory-Store

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.