Configure cakephp animation to work with Solr request

I understand cakephp pagination is closely tied to sql query. Can I configure it to work with Solr request? I want pagination to return data from a solr query instead of a mysql query. Thank!

+5
source share
2 answers

You will need to implement a data source for this database. You should be able to use the usual CakePHP pagination methods if your model uses this data source and if it was written correctly. https://github.com/ugrworks/cakephp-solr-webservice-datasource , but its pretty old, but I think you can reuse the code and work on it.

: https://github.com/Highstrike/cakephp-solr-datasource CakePHP 2.x

0

All Articles