Tagged Questions
Redis is an open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.
38
votes
5answers
16k views
Is memcached a dinosaur in comparison to Redis?
I have worked quite a bit with memcached the last weeks and just found out about Redis. When I read this part of their readme, I suddenly got a warm, cozy feeling in my stomach:
Redis can be used ...
33
votes
9answers
9k views
What should I choose: MongoDB/Cassandra/Redis/CouchDB?
We're developing a really big project and I was wondering if anyone can give me some advice about what DB backend should we pick.
Our system is compound by 1100 electronic devices that send a signal ...
25
votes
7answers
7k views
How to use redis PUBLISH/SUBSCRIBE with nodejs to notify clients when data values change?
I'm writing an event-driven publish/subscribe application with NodeJS and Redis. I need an example of how to notify web clients when the data values in Redis change.
18
votes
4answers
846 views
Debugging of a C program (Redis server)
Premise
Hi,
I received multiple reports from a Redis user that experienced server crashes, using a Redis stable release (latest, 2.4.6). The bug is strange since the user is not doing esoteric ...
18
votes
4answers
483 views
How to Guarantee Message delivery with Celery?
I have a python application where I want to start doing more work in the background so that it will scale better as it gets busier. In the past I have used Celery for doing normal background tasks, ...
17
votes
11answers
10k views
Which PHP module to use with redis?
If I check the redis Client list, there are 4 for PHP: Redis PHP Bindings, phpredis, Predis, Redisent.
Question is, which is the best and good to use?
Thanks!
16
votes
4answers
8k views
How to deploy resque workers in production?
The GitHub guys recently released their background processing app which uses Redis:
http://github.com/defunkt/resque
http://github.com/blog/542-introducing-resque
I have it working locally, but I'm ...
15
votes
6answers
5k views
Best Redis library for Java
The official Redis homepage lists JDBC-Redis and JRedis. What are the advantages / disadvantages of each ? Are there any other options ?
14
votes
4answers
3k views
Redis and Memcache or just Redis?
I'm using memcached for some caching in my Rails 3 app through the simple Rails.cache interface and now I'd like to do some background job processing with redis and resque.
I think they're different ...
14
votes
7answers
6k views
Suggest a simple NoSQL database for java project
I am developing a simple internal use application with an intended user base of around 100 people. The application does a lot of reads and very few writes. The dataset size is fairly small and we do ...
14
votes
2answers
5k views
Redis replication and redis sharding (cluster) difference
Anyone know the difference between redis replication and redis sharding?
What are they use for? Redis stores data in memory, how does this affect replication/sharding?
Is it possible to use both of ...
13
votes
2answers
233 views
Redis backed ASP.NET SessionState provider
I'm currently developing an ASP.NET SessionState custom provider that is backed by Redis using Booksleeve. Redis seemed like a perfect fit for SessionState (if you must use it) because:
Redis can ...
13
votes
8answers
11k views
MongoDB vs. Redis vs. Cassandra for a fast-write, temporary row storage solution
I'm building a system that tracks and verifies ad impressions and clicks. This means that there are a lot of insert commands (about 90/second average, peaking at 250) and some read operations, but the ...
13
votes
2answers
2k views
Is redis a durable datastore?
By "durable" I mean, the server can crash at any time, and as long as the disk remains in tact, no data is lost (see ACID). Seems like that's what journaling mode is for, but if you enable journaling, ...
12
votes
5answers
854 views
C program stuck on uninterruptible wait while performing disk I/O on Mac OS X Snow Leopard
One line of background: I'm the developer of Redis, a NoSQL database (http://code.google.com/p/redis). One of the new features I'm implementing is Virtual Memory, because Redis takes all the data in ...
11
votes
2answers
3k views
How to reuse redis connection in socket.io?
Here is my code using socket.io as WebSocket and backend with pub/sub redis.
var io = io.listen(server),
buffer = [];
var redis = require("redis");
var subscribe = redis.createClient(); ...
11
votes
2answers
2k views
Redis as a database
I want to use Redis as a database, not a cache. From my (limited) understanding, Redis is an in-memory datastore. What are the risks of using Redis, and how can I mitigate them?
11
votes
1answer
1k views
Difference between Document-based and Key/Value-based databases?
I know there are three different, popular types of non-sql databases.
Key/Value: Redis, Tokyo Cabinet, Memcached
ColumnFamily: Cassandra, HBase
Document: MongoDB, CouchDB
I have read long blogs ...
10
votes
1answer
650 views
Which database out of CouchDB, MongoDB and Redis is good for starting out with Node JS?
I'm getting more into Node JS and am enjoying it. I'm moving more into web application development.
I have wrapped my head around Node JS and currently using Backbone JS for the front end. I'm making ...
10
votes
3answers
554 views
Using MongoDB as our master database, should I use a separate graph database to implement relationships between entities?
We're currently in the process of implementing a CRM-like solution internally for a professional firm. Due to the nature of the information stored, and the varying values and keys for the information ...
10
votes
3answers
4k views
How to atomically delete keys matching a pattern with Redis
A basic question. Maybe I'm just doing this wrong.
In my Redis DB I have a number of "prefix:" hashes.
Sometimes I want to purge them all atomically.
How to do this without using some distributed ...
9
votes
2answers
1k views
Bulk ingest into Redis
I'm trying to load a large piece of data into Redis as fast as possible.
My data looks like:
771240491921 SOME;STRING;ABOUT;THIS;LENGTH
345928354912 SOME;STRING;ABOUT;THIS;LENGTH
There is a ~12 ...
9
votes
3answers
934 views
What does Redis do when it runs out of memory?
This might be easy question but I am having a hard time finding the answer. How does Redis 2.0 handle running out of maximum allocated memory? How does it decide which data to remove or which data to ...
9
votes
3answers
5k views
How can I use redis with Django?
I've heard of redis-cache but how exactly does it work? Is it used as a layer between django and my rdbms, by caching the rdbms queries somehow?
Or is it supposed to be used directly as the ...
9
votes
3answers
2k views
Redis autocomplete
How can I implement an autocomplete using redis?
Say for example I have an array ["alfred","joel","jeff","addick"]. When I type a I get ["alfred", "addick"]
I hope you get the point. How can I ...
8
votes
3answers
960 views
How do I move a redis database from one server to another?
I currently have a live redis server running on a cloud instance and I want to migrate this redis server to a new cloud instance and use that instance as my new redis server. If it were MySQL, I would ...
8
votes
3answers
2k views
delayed_jobs vs resque vs beanstalkd?
Here is my needs:
Enqueue_in(10.hours, ... ) (DJ syntax is perfect.)
Multiply workers, concurrently. (Resque or beanstalkd are good for this, but not DJ)
Must handle push and pop of 100 jobs a ...
8
votes
2answers
2k views
Redis master/slave replication - single point of failure?
How does one upgrade to a newer version of Redis with zero downtime? Redis slaves are read-only, so it seems like you'd have to take down the master and your site would be read-only for 45 seconds or ...
8
votes
1answer
3k views
Comparison of memcache, redis and ehcache as distributed caching framework
One of the decisions I need to make is what caching framework to use in my system. With so many to choose from, I am currently investigating redis, ehcache and memcached.
Can anyone point to ...
7
votes
1answer
494 views
Run an R script at boot
First of all, this may need to be moved to superuser. I couldn't decide which venue was better.
I am trying to write an R script that will run at boot/reboot and add that machine to a pool of ...
7
votes
2answers
1k views
When to Redis ? when to MongoDB?
What I want is not a comparison between redis and mongodb. I knows they are different, the performance and the API is totally different.
Redis is very fast but the API is very 'atomic'.
MongoDB will ...
7
votes
1answer
303 views
Does adding a redis slave issue a blocking call to the master?
It is unclear to me from the documentation on replication whether the SYNC command is blocking.
It seems like it shouldn't be (after all, spinning up a new slave would stop the master from serving ...
7
votes
1answer
419 views
JavaScript Design Patterns — Dealing With Unwanted Asynchrony
I'm pretty new to event-based programming (using node.js). I believe that there's something I'm just not grokking about it, because there's a particular problem that I keep coming across again and ...
7
votes
1answer
2k views
redis: Handling failover?
Redis really seems like a great product with the built in replication and the amazing speed. After testing it out, it feels definitely like the 2010 replacement of memcached.
However, since when ...
6
votes
3answers
108 views
How to efficiently store and read back a Hierarchy from cache
My situation is that I'm currently storing a hierarchy in a SQL database thats quickly approaching 15000 nodes ( 5000 edges ). This hierarchy is defining my security model based off a users position ...
6
votes
3answers
189 views
'Queueing' tutorials and documentation?
I'm looking for articles and references that give an overview of 'queueing' (I'm probably not even using the right term here). I'm hoping for an introductory styled guide through a world of Redis, ...
6
votes
2answers
165 views
Using MySQL triggers in AWS to empty cache on updates and inserts
I am building an architecture on AWS with several EC2 instances as webservers and a central MySQL database (RDS). The EC2 instances have Redis installed for caching single db rows. When a row changes ...
6
votes
5answers
2k views
Pub/sub implementation in nodeJS
I've been playing around with different publish/subscribe implementations for nodeJS and was wondering which one would be best for a specific application. The requirements of the application involve ...
6
votes
3answers
528 views
Setting the cache_store in an initializer
I'm trying to use redis-store as my Rails 3 cache_store. I also have an initializer/app_config.rb which loads a yaml file for config settings. In my initializer/redis.rb I have:
...
6
votes
2answers
3k views
is Redis stable on Windows?
This afternoon, i used python script to test the performance of Redis on Windows.
It worked normally when the numbere of threads was only 10, but some exceptions occured when the numbere of threads ...
6
votes
2answers
1k views
Start using Redis with ASP.NET
How do I start using Redis database with ASP.NET?
What I should install and what I should download?
I'm using Visual Studio 2008 with C#.
6
votes
2answers
777 views
Redis client library recommendations for use from Scala
I'm planning some work with a Redis instance from Scala and am looking for recommendations on what client library to use. Ideally I'd like a library designed for Scala (rather than Java) if a good ...
6
votes
2answers
3k views
Dumping all key/value pairs in a Redis db
I'm using an ORM called Ohm in Ruby that works on top of Redis and am curious to find out how the data is actually stored. I was wondering if there is way to list all the keys/values in a Redis db.
...
6
votes
1answer
1k views
Resque or Gearman - choosing the right tool for background jobs
We are developing a web application wherein with about 50% of write requests, we end up pushing data to multiple data stores and inserting and updating significant number of records in those data ...
6
votes
5answers
3k views
PHP - Redis/Memcachedb/Mongodb or other persistent storage to store counter
By counter it could be pageviews, downloads, number of votes etc. Basically, not very 'critical' data.
What is the 'best' way to store those information? Mysql is not a good option. What do you guys ...
5
votes
4answers
129 views
Get the index of an item by value in a redis list
I have a redis list I have created, I am using it as a queue at the moment that reverses once in a while. My problem is that I would like to be able to get the index of an item on that queue/list by ...
5
votes
1answer
53 views
In redis, how do i remove keys?
I want to remove keys that match "user*".
how do I do that in redis command line?
5
votes
2answers
191 views
Redis, Mongo or Hazelcast?
We have a JAVA web app which uses postgres(single database with a slave) for storing all the important data.
We are now moving from a single server setup to mutiple servers due to which i need to ...
5
votes
2answers
73 views
What to use for session management?
I'm trying to do some research to find the best option for sessions management in a multi-server environment and was wondering what people have found successful and why. Pros and cons.
RDBMS - ...
5
votes
1answer
283 views
JedisConnectionException: java.net.SocketTimeoutException: connect timed out
I'm using jedis for simple key-value data store... My code is as follows
private static final String HOST = "50.30.35.9";
private static final int PORT = 2863;
Jedis jedis = new Jedis(HOST, ...