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 has been 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 ?
It probably would be much faster.
Thank you
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
The text was updated successfully, but these errors were encountered: