I have a web application built in codeigniter and hosted with cloudcontrol. I use a normal MySQL database for all of my data persistance, and now I want to use a mongodb database in addition to the MySQL database.
I want to use mongodb as a job queue to persist messages between my workers and my application servers. I've gotten the inspiration to do this from this tutorial: http://www.captaincodeman.com/2011/05/28/simple-service-bus-message-queue-mongodb/
Is this possible (using two different types of databases simultaniously -- with/without hacking codeigniter, I would assume it is)
Any tips for accomplishing this?
---- EDIT ----
I've included this library in my CI project: https://github.com/alexbilbie/codeigniter-mongodb-library
And when I attempt to load it via: $this->load->library('mongo_db');
I run into this:
I'm not sure how I can get mysql and mongodb working together...
---- EDIT ----
Nevermind my above question, I improperly set up the config file and confused the error...