NoSQL veritabanı PHP ile yazılmış?

0 Cevap php

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" } ); 

Düzenleme: Ben basit bir NoSQL (en.wikipedia.org/wiki/NoSQL) belge-yönelimli veritabanı (en.wikipedia.org / wiki / Belge oriented_database) arıyorum.

0 Cevap