Skip to content

Commit ac8e060

Browse files
authored
Merge pull request #115 from Edmond-J-A/master
feat: Add Cache at persist
2 parents f751ead + 1ae06ac commit ac8e060

File tree

3 files changed

+107
-8
lines changed

3 files changed

+107
-8
lines changed

src/main/CachedEnforcer.lua

+5-8
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
--limitations under the License.
1414

1515
local Enforcer = require("src.main.Enforcer")
16+
local DefaultCache=require("src.persist.cache.DefaultCache")
1617

1718
-- CachedEnforcer wraps Enforcer and provides decision cache
1819
local CachedEnforcer = {}
@@ -24,7 +25,7 @@ function CachedEnforcer:new(model, adapter)
2425
self.__index = self
2526
setmetatable(e, self)
2627
e.cacheEnabled = true
27-
e.m = {}
28+
e.m = DefaultCache:new()
2829
return e
2930
end
3031

@@ -66,19 +67,15 @@ function CachedEnforcer:enforce(...)
6667
end
6768

6869
function CachedEnforcer:getCachedResult(key)
69-
if self.m[key] ~= nil then
70-
return self.m[key], true
71-
end
72-
73-
return nil, false
70+
return self.m:get(key)
7471
end
7572

7673
function CachedEnforcer:setCachedResult(key, res)
77-
self.m[key] = res
74+
self.m:set(key, res)
7875
end
7976

8077
function CachedEnforcer:invalidateCache()
81-
self.m = {}
78+
self.m:clear()
8279
end
8380

8481
return CachedEnforcer

src/persist/cache/Cache.lua

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
--Copyright 2021 The casbin Authors. All Rights Reserved.
2+
--
3+
--Licensed under the Apache License, Version 2.0 (the "License");
4+
--you may not use this file except in compliance with the License.
5+
--You may obtain a copy of the License at
6+
--
7+
-- http://www.apache.org/licenses/LICENSE-2.0
8+
--
9+
--Unless required by applicable law or agreed to in writing, software
10+
--distributed under the License is distributed on an "AS IS" BASIS,
11+
--WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
--See the License for the specific language governing permissions and
13+
--limitations under the License.
14+
local Cache={}
15+
16+
function Cache:new()
17+
local o = {}
18+
setmetatable(o, self)
19+
self.__index = self
20+
return o
21+
end
22+
--Set puts key and value into cache.
23+
-- First parameter for extra should be uint denoting expected survival time.
24+
-- If survival time equals 0 or less, the key will always be survival.
25+
function Cache:set(key, value, ...)
26+
27+
end
28+
29+
--Get returns result for key,
30+
--If there's no such key existing in cache,
31+
--ErrNoSuchKey will be returned.
32+
function Cache:get(key)
33+
34+
end
35+
36+
--Delete will remove the specific key in cache.
37+
--If there's no such key existing in cache,
38+
--ErrNoSuchKey will be returned.
39+
function Cache:delete(key)
40+
41+
end
42+
43+
--Clear deletes all the items stored in cache.
44+
function Cache:clear()
45+
46+
end
47+
48+
return Cache

src/persist/cache/DefaultCache.lua

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
--Copyright 2021 The casbin Authors. All Rights Reserved.
2+
--
3+
--Licensed under the Apache License, Version 2.0 (the "License");
4+
--you may not use this file except in compliance with the License.
5+
--You may obtain a copy of the License at
6+
--
7+
-- http://www.apache.org/licenses/LICENSE-2.0
8+
--
9+
--Unless required by applicable law or agreed to in writing, software
10+
--distributed under the License is distributed on an "AS IS" BASIS,
11+
--WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
--See the License for the specific language governing permissions and
13+
--limitations under the License.
14+
local Cache=require("src/persist/cache/Cache")
15+
16+
17+
local DefaultCache=Cache:new()
18+
19+
function DefaultCache:new()
20+
local o = {}
21+
self.__index = self
22+
setmetatable(o, self)
23+
o.m={}
24+
return o
25+
end
26+
27+
function DefaultCache:set(key, value, ...)
28+
self.m[key] = value
29+
return nil
30+
end
31+
32+
function DefaultCache:get(key)
33+
if self.m[key]==nil then
34+
return nil, false
35+
else
36+
return self.m[key], true
37+
end
38+
end
39+
40+
function DefaultCache:delete(key)
41+
if self.m[key]==nil then
42+
return error("there's no such key existing in cache")
43+
else
44+
self.m[key]=nil
45+
return true
46+
end
47+
end
48+
49+
function DefaultCache:clear()
50+
self.m = { }
51+
return true
52+
end
53+
54+
return DefaultCache

0 commit comments

Comments
 (0)