Wolverine is a simple library to allow you to manage and run redis server-side lua scripts from a rails app, or other ruby code.
Redis versions 2.6 and up allow lua scripts to be run on the server that execute atomically and very quickly.
This is extremely useful.
Wolverine is a wrapper around that functionality, to package it up in a format more familiar to a Rails codebase.
- Make sure you have redis 2.6 or higher installed. As of now, that means compiling from source:
git clone https://github.com/antirez/redis.git
cd redis && make
./src/redis-server
- Add wolverine to your Gemfile:
gem 'wolverine'
- Add your lua scripts to
app/wolverine
:
-- app/wolverine/util/mexists.lua
local exists = {}
local existence
for _, key in ipairs(KEYS) do
table.insert(exists, redis.call('exists', key))
end
return exists
- Call wolverine from your code:
Wolverine.util.mexists(['key1', 'key2', 'key3']) #=> [0, 1, 0]
Or
Wolverine.util.mexists(:keys => ['key1', 'key2', 'key3']) #=> [0, 1, 0]
Methods are available on Wolverine
paralleling the directory structure
of wolverine's script_path
.
Available configuration options:
Wolverine.config.redis
(defaultRedis.new
)Wolverine.config.script_path
(defaultRails.root + 'app/wolverine'
)Wolverine.config.instrumentation
(default none)
If you want to override one or more of these, doing so in an initializer is recommended but not required. See the full documentation for more details.
For more information on scripting redis with lua, refer to redis' excellent documentation: http://redis.io/commands/eval
Copyright (C) 2012 Shopify by Burke Libbey
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.