View Single Post
marxian's Avatar
Posts: 2,448 | Thanked: 9,523 times | Joined on Aug 2010 @ Wigan, UK
#306
Originally Posted by slender View Post
Did I see right that currently it loads 1000 pixels ahead thumbs and 15 list items? Is this too much for gprs and slow connections How is it possible to take good wifi connection and slowass gprs connection in count and give good usage experience on both?
The cache buffer refers to number of (measured in vertical pixels) that are cached when the list is in view. By default, QML deletes any delegtes from memory when they are not in view. Setting a cache buffer of 1000 pixels in this case means that 10 items will be cached, so these items (including thumbnails downloaded over the network) do not need to be reloaded when scrolling. A higher cache buffer will actually be much better for slower internet connections.

The 15 list items you refer to is the number of items (count - 15) before grabbing further results (the API returns a maximum of 50 at any one time). In other words, when scrolling, results are grabbed once you get to 15 items before the end of the list.
__________________
'Men of high position are allowed, by a special act of grace, to accomodate their reasoning to the answer they need. Logic is only required in those of lesser rank.' - J K Galbraith

My website

GitHub
 

The Following User Says Thank You to marxian For This Useful Post: