You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 1, 2023. It is now read-only.
I'm currently using a field in redis to log my worker informations.
This is how I do it currently:
def log(message)
store log: (retrieve(:log) || '').concat(message).concat("\n")
end
It really isn't efficient, it's slow actually. Would it be possible to add a method 'append' or 'store_append' that uses the built in APPEND command from redis https://redis.io/commands/append ?
Hi,
I'm currently using a field in redis to log my worker informations.
This is how I do it currently:
It really isn't efficient, it's slow actually. Would it be possible to add a method 'append' or 'store_append' that uses the built in APPEND command from redis https://redis.io/commands/append ?
It probably would be much faster.
Thank you