Redis Cloud - Annual
RedisExternal reviews
96 reviews
from
and
External reviews are not included in the AWS star rating for the product.
Product Review - Redis
What do you like best about the product?
Redis is one of the best in cache memory database that we used with Nodejs. There are few things which i like the most about the redis i.e.
It's an opensource which we can use free of cost and the team behind it is just awesome.
The performance and speed of the Redis is exceptionally fast.
Redis supports concurrent operation which are atomic in nature which is very important in our use case.
We managed to make redis work like worker queues.
Last but not the least which is very important in Database is Data replication which redis also supports.
It's an opensource which we can use free of cost and the team behind it is just awesome.
The performance and speed of the Redis is exceptionally fast.
Redis supports concurrent operation which are atomic in nature which is very important in our use case.
We managed to make redis work like worker queues.
Last but not the least which is very important in Database is Data replication which redis also supports.
What do you dislike about the product?
There are not many things which we dislike but yeah 1 thing which can extend the functionality of redis is JOINS which it doesn't have at the moment.
Another thing as it's a in memory database so we need to make sure only that much data has to be fit in which our memory can support.
Another thing as it's a in memory database so we need to make sure only that much data has to be fit in which our memory can support.
What problems is the product solving and how is that benefiting you?
We are trying to make a worker queues with Redis with which we are trying to implement the automatic scaling of docker containers depending upon the messages/load on the worker queues.
Recommendations to others considering the product:
Everyone should consider this as a in memory database as it's an open source and worth a shot whoever wants to implement cache stuff
Digital Marketing
What do you like best about the product?
Unlike the free cache modules, Redis is a well known provider with good reputation. While I have not implemented this cache in real environment, I am confident if it will deliver as promises.
What do you dislike about the product?
Memcache is also good and free. Our team is more familiar to Memcache.
What problems is the product solving and how is that benefiting you?
Slowness while access database. We combined Varnish and Memcache and solved most of the first byte issue.
Recommendations to others considering the product:
Try other cache options, including the free before jumping to Redis so you can see the different.
Great in-memory storage and persistance
What do you like best about the product?
What's best to appreciate about Redis is how quickly it's growing since it's first appearance and how useful and fast it is for many parts of a software implementation.
It always seemed to me like a storage option for caching or indexing, but it is way more than that. Some features are definitely to be highlighted like:
* Pub/Sub message system.
* Redis Cluster
* Expires
* Lua scripting
* Blazing fast
Are some of the things I noticed that make a difference when looking for this kind of memory storage.
It always seemed to me like a storage option for caching or indexing, but it is way more than that. Some features are definitely to be highlighted like:
* Pub/Sub message system.
* Redis Cluster
* Expires
* Lua scripting
* Blazing fast
Are some of the things I noticed that make a difference when looking for this kind of memory storage.
What do you dislike about the product?
I did not find any problem yet will update the review one I have more information
What problems is the product solving and how is that benefiting you?
Decoupled architecture, Pub sub
Practical tool for caching
What do you like best about the product?
Fast performance, easy to use. Has support for basic data types, and more advanced ones such as HyperLogLog for solving count-distinct problems.
What do you dislike about the product?
There is no native wildcard support for deletion operations in Redis command line client.
What problems is the product solving and how is that benefiting you?
Caching for web service. Active session tracking/counting.
Recommendations to others considering the product:
Setup multiple DBs for different general use with different default TTLs.
Simplicity is Beauty and Beauty is simplicity.
What do you like best about the product?
The performance , robustness , easy to learn and ease to use in production environments .
What do you dislike about the product?
scripting language , i prefer that use javascript for scripting in redis .
What problems is the product solving and how is that benefiting you?
we are using redis in data caching and socket.io related using .
Recommendations to others considering the product:
support javascript as scripting language and connecting and integrating to another databases as an optional module .
Great in-memory storage
What do you like best about the product?
What's best to appreciate about Redis is how quickly it's growing since it's first appearance and how useful and fast it is for many parts of a software implementation.
It always seemed to me like a storage option for caching or indexing, but it is way more than that. Some features are definitely to be highlighted like:
* Pub/Sub message system.
* Redis Cluster
* Expires
* Lua scripting
* Blazing fast
Are some of the things I noticed that make a difference when looking for this kind of memory storage.
It always seemed to me like a storage option for caching or indexing, but it is way more than that. Some features are definitely to be highlighted like:
* Pub/Sub message system.
* Redis Cluster
* Expires
* Lua scripting
* Blazing fast
Are some of the things I noticed that make a difference when looking for this kind of memory storage.
What do you dislike about the product?
I used to dislike the lack of features on Redis, but that was like 2 years ago, it has grown so quickly so fast that it's scary, the community is strongly focus on this product development.
What problems is the product solving and how is that benefiting you?
Pretty much anything that needs to be stored and retrieved fast, like caching is a great use case for Redis. For example to store session information in web applications. Also to store large amounts of incremental and volatile data, since it can be "expired".
Recommendations to others considering the product:
If considering using Redis for a project, just try it, it's easy to use and feature-rich. The community is really active and there's no lack on tutorial for a lot of use cases.
Fast access to data
What do you like best about the product?
Simple and fast access to key/value data, as well as score and rank system.
What do you dislike about the product?
Not so easy to find/list existing keys. On the order hand, if you need list keys, probably you are doing something wrong.
What problems is the product solving and how is that benefiting you?
Cache, temporarily data, message queue, non persistent data, in memory database.
Easy to use. But too expensive. Memory limited
What do you like best about the product?
Very easy to use. A novice can pick it up and put to use almost immediately. Documentation very easily done
What do you dislike about the product?
Very expensive, because of memory limitation. Not sure if the current version supports multiple instances
What problems is the product solving and how is that benefiting you?
I needed a database that offers very fast read and write operations. Redis delivered. Except that my needs have outgrown now
Recommendations to others considering the product:
It's really the Swiss army knife. Documentation is a breeze to pick up. Really! Performance is as advertised.
Used as a cache between DB and application
What do you like best about the product?
The data structure in Redis are very helpful. The set operations helped in efficiently organizing the data and less operation needed from our end. We maintained all the Database relationship in Redis for faster access.
What do you dislike about the product?
No operation on the keys can be performed. Like sorting list based on key. There is a work around, which didn't perfectly fit well
What problems is the product solving and how is that benefiting you?
The main problem was to make the client as light as possible. Fetching data from DB was really slow for our flask application. So we thought Redis was the way to go. Where all the data are cached with drastically reduced the REST response time.
Recommendations to others considering the product:
Easily to use. Can build a prototype in a week(depends on what you want to do). Highly recommend to use
Great experience with Redis
What do you like best about the product?
Super fast response times (main purpose of redis)
What do you dislike about the product?
Data is stored in memory (needed for the quick retrieval of the data). This is generally not an issue, however very large datasets (> 250 GB) can't be fully stored in the memory and redis might not the best option for very large sets.
What problems is the product solving and how is that benefiting you?
Fast retrieval of product recommendations. Normal SQL requests take too long with larger datasets. Redis requires that the data is organized differently, but the extra work upfront pays off with every data request.
showing 41 - 50