Skip to content

Commit

Permalink
release: 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultcha committed Aug 27, 2017
1 parent 7a9d030 commit 62e7e84
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/resty/mlcache.lua
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ local unmarshallers = {


local _M = {
_VERSION = "1.0.0",
_VERSION = "1.0.1",
_AUTHOR = "Thibault Charbonnier",
_LICENSE = "MIT",
_URL = "https://github.com/thibaultcha/lua-resty-mlcache",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
package = "lua-resty-mlcache"
version = "1.0.0-1"
version = "1.0.1-1"
source = {
url = "git://github.com/thibaultcha/lua-resty-mlcache",
tag = "1.0.0"
tag = "1.0.1"
}
description = {
summary = "Multi-level caching library for OpenResty",
detailed = [[
This library combines the power of lua_shared_dict memory zones,
lua-resty-lrucache, and lua-resty-lock in a single, easy-to-use module.
A `get()` function acts as a "get or set" method, and can cache a value
A get() function acts as a "get or set" method, and can cache a value
from any I/O operation (like a database read). Your I/O operations will be
invoked from a single worker via lua-resty-lock, and will prevent your
database from undergoing a dogpile effect.
Expand All @@ -23,8 +23,8 @@ description = {
- Negative caching
- TTLs and negative TTLs
- Custom LRU implementations (like `resty.lrucache.pureffi`)
- A key/value API with `set()`/`peek()`/`delete()` (provided a few minor drawbacks)
- Custom LRU implementations (like resty.lrucache.pureffi)
- A key/value API with set()/peek()/delete() (provided a few minor drawbacks)
]],
homepage = "https://github.com/thibaultcha/lua-resty-mlcache",
license = "MIT"
Expand Down

0 comments on commit 62e7e84

Please sign in to comment.