I am building a PHP application using CouchBase (mostly), but still not completely clear on the best approach for fetching contents. There are 2 different ways to get data (if I am correct)
- Using View functions
- Querying Data with N1QL
That mean I can get same content using these 2 options..
For my developments purpose (n1sql) second option is more suitable. But still I am willing to rewrite my models to use more view functions, if that approach works well (in terms good performance, less RAM and CPU usage, less maintenance costs, etc. )
Please share your thoughts about this.