We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49d860f commit 5a5dff5Copy full SHA for 5a5dff5
arctic/_cache.py
@@ -8,6 +8,11 @@
8
CACHE_COLL = 'cache'
9
CACHE_DB = 'meta_db'
10
CACHE_SETTINGS = 'cache_settings'
11
+"""
12
+Sample cache_settings collection entry:
13
+meta_db.cache_settings.insertOne({"enabled": true, "cache_expiry": 600})
14
+meta_db.cache_settings.find(): { "_id" : ObjectId("5cd5388b9fddfbe6e968f11b"), "enabled" : false, "cache_expiry" : 600 }
15
16
DEFAULT_CACHE_EXPIRY = 3600
17
18
0 commit comments