We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f34922b commit 5b13108Copy full SHA for 5b13108
server/svix-server/src/cfg.rs
@@ -185,7 +185,10 @@ pub struct ConfigurationInner {
185
/// The DSN for the Redis-backed queue. Overrides `redis_dsn`. (can be left empty if not using
186
/// redis)
187
pub queue_dsn: Option<String>,
188
- /// The prefix to use for the queue. If not provided it will be empty.
+ /// Optional prefix to use for the queue.
189
+ ///
190
+ /// Allows multiple instances of svix-server to share a single queue backend
191
+ /// without interfering with each other.
192
pub queue_prefix: Option<String>,
193
194
/// What kind of cache to use. Supported: memory, redis (must have redis_dsn or cache_dsn
0 commit comments