Skip to content

How are messages stored in brokers in redis-smq? #128

Answered by weyoss
longtt2705 asked this question in Q&A
Discussion options

You must be logged in to vote

@longtt2705 RedisSMQ is backed by Redis.

Depending on your application needs and requirements, Redis can be configured:

  • To have no data persistence at all. When your Redis server shuts down, you lost your data.
  • To partially persist your data. Data is persisted into disk at specified intervals.
  • To have full data persistence "comparable to what PostgreSQL can provide you" quote. Every write operation is persisted.

For more details see https://redis.io/docs/manual/persistence

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by weyoss
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #89 on April 15, 2025 09:10.