Very sorry for not responding sooner - the past few months have been filled with travel, and my inbox has suffered.
Perhaps you don’t need these answers any more, but just in case (or for anyone else who comes across this thread): * Using GET requests for search actions is highly recommended. If you were modifying data, then a POST, PUT, PATCH or DELETE would be appropriate, but if the data’s not changing, then always opt for a GET. * The documentation is available here: http://freelancing-gods.com/thinking-sphinx/ <http://freelancing-gods.com/thinking-sphinx/> And specifically, for the :sql/:include options: http://freelancing-gods.com/thinking-sphinx/searching.html#advanced <http://freelancing-gods.com/thinking-sphinx/searching.html#advanced> Again, sorry for the delay. — Pat > On 16 Sep 2015, at 10:45 pm, Игорь Калашнюк <[email protected]> wrote: > > Of course that helped a lot. > Thanks. > And can you tell me one more thing. This time about pagination. > I beg a pardon for my english :) > > On my page I've had such search form > > = form_tag({ controller: 'board', > action: 'all', > id: params[:id]}, > class: 'navbar-form navbar-left') do |f| > > the controller is in my previous post. > > So the pagination for searching results didn't worked > till I've changed http method to GET ( i did it becouse i wanted to have > searching results in browser history ) > > Is such behavior is ok ? > > Now I have both ( address and pagination ) > here is my new form ( don't pay atention to action: and controller: ) > = form_tag( url_for_options = { controller: 'board', > action: 'all', > id: params[:id]}, > options = { method: :get, > class: 'navbar-form navbar-left'}) do |f| > > And one more thing. > Where can i find documentation for Thinking Sphinx v3 ? > I've was searching a lot but this construction ( :sql => {:include => > :vk_photos},) i see for the first ? > Thanks for your help. > > -- > You received this message because you are subscribed to the Google Groups > "Thinking Sphinx" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > To post to this group, send email to [email protected] > <mailto:[email protected]>. > Visit this group at http://groups.google.com/group/thinking-sphinx > <http://groups.google.com/group/thinking-sphinx>. > For more options, visit https://groups.google.com/d/optout > <https://groups.google.com/d/optout>. -- You received this message because you are subscribed to the Google Groups "Thinking Sphinx" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/thinking-sphinx. For more options, visit https://groups.google.com/d/optout.
