Having a look at LevelDB

Note: It is worth noting that (the way I interpret it) one of the authors of LevelDB (Sanjay) recommends using TokyoCabinet if the workload is more read-oriented. In turn the TokyoCabinet authors recommend using KyotoCabinet :-) (see video with a…

Toying around with Google BigQuery Python CLI

BigQuery is an API developed by Google for querying big data using an SQL like language. For beginners I can recommend this video presentation on BigQuery. It also covers the open source version (Apache Drill) of the software (Dremel) underlying…

Optimizing nginx performance

Found these links that have valuable tips for achieving nginx performance: I’ll try to benchmark before and after with ab and post the results here.

Installing nginx on Mac with pcre library

To build nginx on Mac OS X Snow Leopard, I use the following options to configure ./configure –with-ld-opt=”-L/usr/local/lib” –with-cc-opt=”-I/usr/local/include” If the ld and cc options are not given, it results in an error reported in a ticket on the nginx…