Hacking Redis to Save Money
medium.com
Hacking Redis to Save Money
1–10 of 11 posts
Re: Hacking Redis to Save Money
#2RedisToGo had a soft tier free service and Heroku offered 20(?) mb PostgreSQL back then. It was fun
Re: Hacking Redis to Save Money
#3Re: Hacking Redis to Save Money
#4Hehe, must have been what, 7 years ago I used Redis for full text search instead of using PostgreSQL on Heroku. RedisToGo had a soft tier free service and Heroku offered 20(?) mb PostgreSQL back then. It was fun
Re: Hacking Redis to Save Money
#5I don't know the answers to these, but the addition of the slave and the patches to Redis set off my "not worth it" alarm. If they are constrained on the development resource, that would be even worse.
Re: Hacking Redis to Save Money
#6Hehe, must have been what, 7 years ago I used Redis for full text search instead of using PostgreSQL on Heroku. RedisToGo had a soft tier free service and Heroku offered 20(?) mb PostgreSQL back then. It was fun
It's not full-text search, it's specifically a very limited search space (tags), which is why Redis is likely a very good solution to this problem.
However my implementation wasn't feature complete either. IT was literally as you just said, tags. Never had time to add more search operations on it. https://github.com/seivan/Rfizzy
Re: Hacking Redis to Save Money
#71. We had Solr but couldn't scale it
2. We decided to use Redis
3. We migrated all code to use Redis and wrote our own indexer
4. Redis didn't work (and I love Redis) out of the box for our problem so we build our solution on top of Redis, we had an index and an intersection server and put effort into ops
5. Then we moved to Elastic
6. Then we moved to Algolia
I wonder
a.) what value all of this brought to the user
b.) what ROI the engineering investment had
Re: Hacking Redis to Save Money
#8What I read (I'm usually the pessimist in the room): 1. We had Solr but couldn't scale it 2. We decided to use Redis 3. We migrated all code to use Redis and wrote our own indexer 4. Redis didn't work (and I love Redis) out of the box for our problem so we build our solution on top of Redis, we had an index and an intersection server and put effort into ops 5. Then we moved to Elastic 6. Then we moved to Algolia I wo…
Re: Hacking Redis to Save Money
#9Re: Hacking Redis to Save Money
#10What I read (I'm usually the pessimist in the room): 1. We had Solr but couldn't scale it 2. We decided to use Redis 3. We migrated all code to use Redis and wrote our own indexer 4. Redis didn't work (and I love Redis) out of the box for our problem so we build our solution on top of Redis, we had an index and an intersection server and put effort into ops 5. Then we moved to Elastic 6. Then we moved to Algolia I wo…