From 62e7e84e620f98167002845b26f642067fe919d9 Mon Sep 17 00:00:00 2001 From: Thibault Charbonnier Date: Sat, 26 Aug 2017 20:18:34 -0700 Subject: [PATCH] release: 1.0.1 --- lib/resty/mlcache.lua | 2 +- ....0-1.rockspec => lua-resty-mlcache-1.0.1-1.rockspec | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) rename lua-resty-mlcache-1.0.0-1.rockspec => lua-resty-mlcache-1.0.1-1.rockspec (80%) diff --git a/lib/resty/mlcache.lua b/lib/resty/mlcache.lua index 16121cddb..fa3c2fede 100644 --- a/lib/resty/mlcache.lua +++ b/lib/resty/mlcache.lua @@ -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", diff --git a/lua-resty-mlcache-1.0.0-1.rockspec b/lua-resty-mlcache-1.0.1-1.rockspec similarity index 80% rename from lua-resty-mlcache-1.0.0-1.rockspec rename to lua-resty-mlcache-1.0.1-1.rockspec index f92fad2b2..d2afd2613 100644 --- a/lua-resty-mlcache-1.0.0-1.rockspec +++ b/lua-resty-mlcache-1.0.1-1.rockspec @@ -1,8 +1,8 @@ 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", @@ -10,7 +10,7 @@ description = { 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. @@ -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"