Moved a personal blog from MySQL to TokyoCabinet to Postgres? Why?
He writes:
"I have no idea how to use a key/value store database properly."
You don't need a database, or object-store or anything fancy to get decent performance for a personal blog. I use Chronicle and it spits out flat files; lighttpd uses sendfile(2) and everything is fast. FWIW, his blog software is one he wrote in Clojure:
He writes:
"I have no idea how to use a key/value store database properly."
You don't need a database, or object-store or anything fancy to get decent performance for a personal blog. I use Chronicle and it spits out flat files; lighttpd uses sendfile(2) and everything is fast. FWIW, his blog software is one he wrote in Clojure:
http://github.com/briancarper/cow-blog/tree/0.2.0
For read-intensive applications, Sqlite3 would do just well.
This write-up should not influence anyone with respect to the (de)merits of MySQL, TokyoCabinet or Postgres.