-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No key deletion support. #45
Comments
You could enumerate the keys yourself if you have restrictions placed in. The library assumes the more efficient flush commands are available. |
That's right, I have no problem deleting keys from the console. I mean, it would be great if it was possible to delete keys through the django admin panel (add a delete button for each key, or make checkboxes and one delete button). Does it make sense to add this to this package in "Inspect RedisServer" section? From time to time there remains garbage with TTL -1, which has to be cleaned by hand through the console. Perhaps there are people who will understand me. I'm interested in the opinion of the author of this package :) |
Ooooof. Looks like I confused the bug report https://github.com/ionelmc/python-redis-lock. Anyway, yes, there could be a delete button. Are you interested in making a PR? |
Lol, anything can happen) Yes, I'm interested. Although I had little practice in customizing django-admin panels, I will try to do it in my free time ) |
Hi, everyone!
I would like to be able to delete both a specific key and clear the entire database. True, the latter requires special permissions to execute commands: FLUSHDB/FLUSHALL. But key deletion is available by default: DEL key
Does this package fit this functionality?
The text was updated successfully, but these errors were encountered: