Call me crazy but I'm planning to Fork wordpress. I'm planning to swap out MySQL for Apache Cassandra. Call it ambitious but I'm planning to devote a chunk of time over the next few months.

In any case my question is: I'm trying to aim to keep plugins working... In essence any plugin that doesn't require their own table should be able to work. Thats the plan, can anyone suggest an approach to handling queries, effectively allowing me to parse queries from plugins.

Only plugins though, the plan is to have all wordpress core core queries removed for Cassandra api calls...

link|improve this question

1  
` can anyone suggest an approach to handling queries, effectively allowing me to parse queries from plugins.` ... I'm not an expert in WP's inner workings, and I don't know much about noSQL, but wouldn't it be an option to override/rewrite $wpdb->query() instead of parsing out and replacing query calls? – Pekka Oct 10 '10 at 20:48
you could just create a drop in db.php file (as with here: wordpress.org/support/topic/…) that interprets the queries into cassandra queries.. not sure what real benefit you'd gain though – Ben Oct 11 '10 at 22:15
@Pekka, I'm still "researching" how best to tackle it so override/overwrite may be an approach. @Ben, I thought about this too but parsing all the queries instead of only the ones from plugins may bring wp to an almost stand still. It's an idea though and i may well end up trying all the suggestions i get on here to see whether any of them gives anything – zcourts Oct 12 '10 at 22:11
feedback

2 Answers

up vote 1 down vote accepted

how far along are you at with this effort? I'm thinking of doing the same thing, so I'm willing to help.

Def. not an experiment for us. My team needs to run wordpress on lots of computers and we really don't care about broken plugins, those can be fixed to implement a DB interface when it comes to creating their entities, the gains of being able to scale horizontally without dealing with mysql and configuration issues are enormous, no single poitn of failure, faster response times, and you have a platform on which you can think of more interesting services on top of wordpress.

I find it crazy that the automattic doesn't really show much interest about DB independence, maybe they have a deal with mysql that prevents them from this, but oh well, they're GPL nazis, if they're not with us, then we can fork them, I'm sure all the major plugins will be re-implemented aswell to be supported on noSQL dbs. http://wordpress.org/support/topic/suggestion-support-mongodb-hypertable-or-other-nosql-storage

link|improve this answer
Ive only been poking around at the source code. with no interest from anyone to help I was going to leave most of it until next summer when I have more time to do it on my own but certainly if I'm getting any help then I'd be willing to kick up the pace right away. I'm also very familiar with Apache cassandra,writing a book on it in fact. So if you're team has no ties to mongodb then even better. Although I should be able to easily learn the ons and outs of mongodb. Please let me know if this can go on, I'd be very interested in being a part of it. – zcourts Dec 1 '10 at 10:24
feedback

Just to add to this as I randomly found this topic, there is this project:

http://www.mongopress.org/

I'm also very interested in this area as my problems with scaling WordPress ALWAYS come from MySQL.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.