Off late, I’ve been working on a project where we’re using a simple key-value store instead of a relational DBMS like MySQL, and I’ve come to realize that if done properly, a lot of applications don’t require a relational database. Redis, being a simple key-value store is ridiculously quick, so try it out, and avoid MySQL when its not really required.
Author Archive
Check out Redis
Sunday, August 16th, 2009Do they even know what ‘Beta’ means?
Friday, June 6th, 2008
I have had it with these people. Seriously, of all the software in the world that can be classified as Beta, the last thing you’d expect is a movie rental service who probably bought off the shelf code and hacked it a little to use it. But hell, they dont care anymore, as far as they’re concerned, its a fashion statement to use unstable software in a public release!
Facebook Application Development: 10 Things to Know
Sunday, April 20th, 2008This comes from padrenel’s blog. It discusses important things to know while getting started with Facebook application development. Must read in my opinion, helped me immensely. It discusses:
- PHP4 vs. PHP5
- Session Keys
- Updating Profiles with fb:ref
- Debugging tools
- Support and Documentation
Getting beaten at my own game!
Sunday, April 20th, 2008Trust me, it doesn’t feel good, but it proves a point, I made a fair game! Yes, the Indian Premier League has begun and so has my application for Facebook. Here’s how I’m doing in the fantasy game:

Not looking too good, I’m afraid!
Periodically back up MySQL with a Shell Script
Saturday, April 19th, 2008There are many advantages to using the shell, one is making backups. With the following code and a cron job, periodically backing up MySQL databases is a breeze.
#!/bin/sh mkdir `date +%m-%d-%y-%Hx%M` cd `date +%m-%d-%y-%Hx%M` mysqldump -h localhost -u user -ppassword dbname > file.sql
