Is there some NoSQL solution written in PHP (perhaps NoSQL front end to MySQL or PostgreSQL)? I need to store and search for key/value pairs in my PHP scripts, but I need to run it on webhosing where I cannot to install anything (so CouchDB, MongoDB etc. is not solution for me). I need something that supports somethinq like this:
// select * from things where x=3 and y="foo"
db.things.find( { x : 3, y : "foo" } );
Thanks.
Edit: I am looking for a simple NoSQL (en.wikipedia.org/wiki/NoSQL) document-oriented database (en.wikipedia.org/wiki/Document-oriented_database).