I started working on lithium and couchdb using their blog tutorial. One thing i noticed is that find:all is not working properly: Posts:find('all', array('conditions' => array('title' => 'title')) The conditions are not working. It all queries the documents and designs. Any experience about it?
Asked
Active
Viewed 112 times
1 Answers
0
CouchDB doesn't support ad-hoc queries (i.e. queries with arbitrary conditions). You need to create a view and query that.

Nate Abele
- 5,771
- 32
- 27
-
Hi Nate, Thanks for your answer, If couchdb doesnt support ad-hoc queries does it mean Lithium relationships is not working as well? – John Laniba Nov 07 '12 at 02:54
-
Lithium does not support relationships for CouchDB. – Nate Abele Nov 10 '12 at 18:34