Redis no data
See original GitHub issueWe’re trying to connect to a vanilla redis-windows
instance, but it doesn’t look like any data shows up in the Key list
for Redis(#132) connections using version 3.8.5
. We’ve verified that there is in fact data in the DB, but DBeaver never shows anything.
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Redis persistence
Persistence refers to the writing of data to durable storage, such as a solid-state disk (SSD). Redis provides a range of persistence options....
Read more >Does Redis persist data? - Stack Overflow
Redis is considered more a speedy cache instead of a database that guarantees data consistency. Therefore its use cases typically differ from ...
Read more >4.1 Persistence options
Within Redis, there are two different ways of persisting data to disk. One is a method called snapshotting that takes the data as...
Read more >There is no data when using redis broker. #253 - mher/flower
Try --inspect_timeout=10000. The default value is 1000. 100 shouldn't have any positive effect. All reactions.
Read more >Redis: in-memory data store. How it works and why you ...
Redis was not built to be a durable and consistent database. If you need a durable, Redis-compatible database, consider Amazon MemoryDB for Redis....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It is a bug in keys extraction. If there are too few keys (and all of them can be read with one SCAN call) in a database then you will see empty list. Will be fixed in 4.0. Thanks for report.
(you can see key list by executing
KEYS *
command).Support of all databases will be added in 4.2.