Scroll Problem in Redis Tab
Under a Redis service, in the data tab, when a value of a key is large enough, scrolling down automatically pushes to top, which is restricting me from deleting a record. See the attached video for better understanding. I have tested in both chrome and firefox, the issue persists in both.
9 Replies
Project ID:
N/A
N/A
storing... documents... in... redis...
mongo... db...
this is a good bug
however
please use mongodb if you are going to store documents
or use redis's hashmaps
or something
other than storing a json string
@alex this document works as a short lengthed chat history which holds only last 6-8 messages, so it won't grow in size, used redis because of the frequent changes and the r/w time. I can just zoom a bit out and get the delete button or login to redis-cli to do the operation, but wanted to bring the bug to the teams attention.
wait why are you using redis then
unless you're closing the https transaction each time
i guess this might be "more efficient" than storing all of the content on the frontend
I am using telegram as the client, thats why, I can't get access to the last few messages using their api, which is needed for generating my response, that is why I need to store it somewhere. So I think redis is a good choice.
oh
makes sense
you need to read and write to the database each time anyways
so this is actually pretty efficient
considering its one read and one write per transaction
yes I need to update for each message pair
Hope they solve this bug, though not much of a problem cuz most people won't be using redis to store longer stuff
I've done the exact same thing with redis, storing documents in redis is generally frowned upon, since you need to read the entire document, but if you do actually need everything from the document then it works out quite well
so for viewing data in redis, I recommend dbgate