forked from catalyst/moodle-tool_forcedcache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
49 lines (49 loc) · 808 Bytes
/
config.json
File metadata and controls
49 lines (49 loc) · 808 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"stores": {
"apcu1": {
"type": "apcu",
"name": "apcu1",
"config": {
"prefix": "mdl"
}
},
"file1": {
"type": "file",
"name": "file1",
"config": {
"path": "/tmp/hardcode",
"autocreate": 1
}
}
},
"rules": {
"application": [
{
"conditions" : {
"canuselocalstore": true
},
"stores": ["apcu1","file1"]
},
{
"stores":["file1"]
}
],
"session": [
{
"conditions": {
"canuselocalstore": true
},
"stores": ["apcu1","file1"]
},
{
"stores": ["file1"]
}
],
"request": []
},
"definitionoverrides": {
"core/databasemeta": {
"canuselocalstore": true
}
}
}