16 lines
350 B
Lua
16 lines
350 B
Lua
--[[
|
|
Function to trim events, default 10000.
|
|
]]
|
|
|
|
-- Includes
|
|
--- @include "getOrSetMaxEvents"
|
|
|
|
local function trimEvents(metaKey, eventStreamKey)
|
|
local maxEvents = getOrSetMaxEvents(metaKey)
|
|
if maxEvents then
|
|
rcall("XTRIM", eventStreamKey, "MAXLEN", "~", maxEvents)
|
|
else
|
|
rcall("XTRIM", eventStreamKey, "MAXLEN", "~", 10000)
|
|
end
|
|
end
|