Skip to content

Instantly share code, notes, and snippets.

@aarondunnington
aarondunnington / queue.lua
Created March 21, 2015 14:11
Array-Based Queue on Aerospike
local ENQUEUE_CAPACITY = 100
local function l_exists(rec, bin)
if aerospike:exists(rec)
and rec[bin] ~= nil
and type(rec) == "userdata" then
return true
end
return false
end