From 95dda547e2473ba85e8fb16e236eb30725c7524c Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Sun, 25 Aug 2019 21:24:19 -0500 Subject: [PATCH] updated readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e6b01aa..eac9d22 100644 --- a/README.md +++ b/README.md @@ -43,4 +43,6 @@ kv.get('my_key') # returns True. kv.delete('my_key') ~~~ -***Warning:*** **Be sure to keep flush_on_exit set to true or manually flush when destroying the kv instance (such as by exiting your program) to avoid losing data.** \ No newline at end of file +***Warning:*** **Be sure to keep flush_on_exit set to true or manually flush when destroying the kv instance (such as by exiting your program) to avoid losing data.** + +***Warning:*** **flush_on_exit should be set to false when using the same file from multiple threads or processes, otherwise you will lose data.** \ No newline at end of file