PBMS in Drizzle | Ramblings.

For those not familiar with PBMS it does two things: provide a place (not in the table) for BLOBs to be stored (locally on disk or even out to S3) and provide a HTTP interface to get and store BLOBs.

This means you can do really neat things such as have your BLOBs replicated, consistent and all those nice databasey things as well as easily access them in a scalable way (everybody knows how to cache HTTP).

This is awesome. How many times have you added a URL to your database table and then had to write API's of some sort to go fetch that URL at read time, and write that URL somewhat atomically at write time?

Drizzle isn't even "done" yet, and already the plugins are flying out of the community. The fact that this is a plugin, and won't affect *anybody* who doesn't want it, is why I'm confident Drizzle is moving in the right directly. I'm not sure why it has taken so long, but this feels like its doing for the RDBMS what apache has done for HTTP serving... make it flexible and extensible, and folks will find interesting ways to use it.