-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathignisdb.conf
More file actions
35 lines (28 loc) · 905 Bytes
/
ignisdb.conf
File metadata and controls
35 lines (28 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# IgnisDB Configuration File
[Network]
# Interface to bind to (default: 127.0.0.1)
host = 127.0.0.1
# Port to listen on (default: 6379)
port = 6381
[Security]
# Require clients to issue AUTH <password> before processing any other commands.
# Comment out to disable authentication.
# requirepass = changeme
# Encryption key for SETBLOB/GETBLOB data encryption (AES-256).
# If set, binary data will be encrypted at rest.
# Comment out to disable encryption.
encryption_key = my_super_secret_key_2026
[Persistence]
# Persistence mode: 'snapshot' or 'aof'
mode = aof
# Snapshot file path
snapshot_file = ignisdb_snapshot.json
# Snapshot interval in seconds (default: 300)
snapshot_interval = 300
# Append Only File path
aof_file = ignisdb.aof
# AOF Flush interval in seconds (Async Persistence)
aof_flush_interval = 1.0
[Advanced]
# Event Loop: 'auto', 'uvloop', 'winloop', 'asyncio'
event_loop = auto