"Fossies" - the Fresh Open Source Software Archive
Member "Signal-Server-10.70.0/service/src/main/resources/lua/remove_queue.lua" (28 Sep 2023, 219 Bytes) of package /linux/www/Signal-Server-10.70.0.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Lua source code syntax highlighting (style: standard) with prefixed line numbers and code folding option.
Alternatively you can here view or download the uninterpreted source code file.
1 local queueKey = KEYS[1] 2 local queueMetadataKey = KEYS[2] 3 local queueTotalIndexKey = KEYS[3] 4 5 redis.call("DEL", queueKey) 6 redis.call("DEL", queueMetadataKey) 7 redis.call("ZREM", queueTotalIndexKey, queueKey)