File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ local unmarshallers = {
124124
125125
126126local _M = {
127- _VERSION = " 1.0.0 " ,
127+ _VERSION = " 1.0.1 " ,
128128 _AUTHOR = " Thibault Charbonnier" ,
129129 _LICENSE = " MIT" ,
130130 _URL = " https://github.com/thibaultcha/lua-resty-mlcache" ,
Original file line number Diff line number Diff line change 11package = " lua-resty-mlcache"
2- version = " 1.0.0 -1"
2+ version = " 1.0.1 -1"
33source = {
44 url = " git://github.com/thibaultcha/lua-resty-mlcache" ,
5- tag = " 1.0.0 "
5+ tag = " 1.0.1 "
66}
77description = {
88 summary = " Multi-level caching library for OpenResty" ,
99 detailed = [[
1010 This library combines the power of lua_shared_dict memory zones,
1111 lua-resty-lrucache, and lua-resty-lock in a single, easy-to-use module.
1212
13- A ` get()` function acts as a "get or set" method, and can cache a value
13+ A get() function acts as a "get or set" method, and can cache a value
1414 from any I/O operation (like a database read). Your I/O operations will be
1515 invoked from a single worker via lua-resty-lock, and will prevent your
1616 database from undergoing a dogpile effect.
@@ -23,8 +23,8 @@ description = {
2323
2424 - Negative caching
2525 - TTLs and negative TTLs
26- - Custom LRU implementations (like ` resty.lrucache.pureffi` )
27- - A key/value API with ` set()`/` peek()`/` delete()` (provided a few minor drawbacks)
26+ - Custom LRU implementations (like resty.lrucache.pureffi)
27+ - A key/value API with set()/ peek()/ delete() (provided a few minor drawbacks)
2828 ]] ,
2929 homepage = " https://github.com/thibaultcha/lua-resty-mlcache" ,
3030 license = " MIT"
You can’t perform that action at this time.
0 commit comments