Reputation: 16595
I just came across jLinq, a JS library to query data (e.g. arrays) in a similar fashion to that of a Relational DB, and it just occurred to me that a library to query data like this in PHP would be extremely handy to work with cached subsets of a RDBMS where the cache itself has no querying capabilities, such as APC or memcached.
I'm aware there's no magic behind the library and "querying" the data can technically be done with raw PHP, but it seems more natural to query data with a syntax like that of jLinq.
Upvotes: 0
Views: 120
Reputation: 4511
Look at Yii framework (PHP-based) - it have wery complex tools for working with data-bases.
Upvotes: 2