I wanted to compare the following DBs, NoSQLs and caching solutions for speed and connections. Tested the following
- Redis
- Memcached
- Tokyo Tyrant / Tokyo Cabinet
- MySQL 5.1.40 (MyISAM)
- MySQL 5.1.40 (with Innodb Plugin 1.0.4), compiled into source of MySQL
My test had the following criteria
- 2 client boxes
- All clients connecting to the server using Python
- Used Python's threads to create concurrency
- Each thread made 10,000 open-close connections to the server
- The server …