Skip to content

Commit 62e7e84

Browse files
committed
release: 1.0.1
1 parent 7a9d030 commit 62e7e84

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/resty/mlcache.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ local unmarshallers = {
124124

125125

126126
local _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",

lua-resty-mlcache-1.0.0-1.rockspec renamed to lua-resty-mlcache-1.0.1-1.rockspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
package = "lua-resty-mlcache"
2-
version = "1.0.0-1"
2+
version = "1.0.1-1"
33
source = {
44
url = "git://github.com/thibaultcha/lua-resty-mlcache",
5-
tag = "1.0.0"
5+
tag = "1.0.1"
66
}
77
description = {
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"

0 commit comments

Comments
 (0)