DefaultQueueStore
The Default Queue Store, stores the queue in-process using MiniMap, which extends Map That's the fastest Store possibility, but not the most flexible one.
Please Note, the Queue is always "cached" on the client side, which means it's still quite fast, however, the speed of "saving and syncing" depends on the StoreManager.
Here is a List of External Stores I'd recommend:
DragonflyDB (Redis Remake, but for bigger scale and it's quite faster than redis)
Redis (Good old Key-Value Database)
Memcached (old alternative to Redis)
PostgresQL via citus-data clusters (SQL Database for high work-flow)
SingleStore (New SQL Database)
Last updated