diff options
Diffstat (limited to 'tests/plugins/kv/configs/.rr-kv-init.yaml')
-rw-r--r-- | tests/plugins/kv/configs/.rr-kv-init.yaml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/plugins/kv/configs/.rr-kv-init.yaml b/tests/plugins/kv/configs/.rr-kv-init.yaml new file mode 100644 index 00000000..935b952d --- /dev/null +++ b/tests/plugins/kv/configs/.rr-kv-init.yaml @@ -0,0 +1,30 @@ +rpc: + listen: tcp://127.0.0.1:6001 + + +kv: + default: + driver: memory + + boltdb-south: + driver: boltdb + dir: "." + file: "rr.db" + bucket: "rr" + permissions: 0666 + ttl: 40s + + boltdb-africa: + driver: boltdb + dir: "." + file: "africa.db" + bucket: "rr" + permissions: 0666 + ttl: 40 + + memcached: + driver: memcached + addr: [ "localhost:11211" ] + +# redis: +# driver: redis |