Reputation: 2103
In my page, users can search a rather big database for entries that contain a search expression. The search is ajaxified and integrates smoothly, however it takes some seconds for it to complete. So I was wondering whether or not it is possible to have the controller send multiple returns to one single ajax call?
If so, I would rather reprogramm the search so that it takes a bit longer but displays each match as soon as it identifies it.
Upvotes: 0
Views: 134
Reputation:
i agree with Yuck. one request will always have one request but you can animate them to show one by one when dislaying..
Upvotes: 0
Reputation: 330
I would try to improve performace on my query, and then implement something like infinite scroll (http://www.infinite-scroll.com/)
Upvotes: 2