Performance Tips
When using the {jrCore_list} function data is being retrieved from the database. These are some tips to make that process faster if you find you're wanting to optimize.
* limit=10 and pagebreak=10 seam to do exactly the same thing, but pagebreak will be slower, so if you're not including the pager, use limit instead.
* order_by="_item_id ???" is the fastest order by parameter because of the way its setup in the database, any of the other orders will be slower, e.g. order_by="audio_title ???".
* order_by="??? random" is very slow when compared to any other order
(even on the _item_id : order_by="_item_id random" )
* 'simplepagebreak' works the same as 'pagebreak' but you will not get the "count" query returned so you wont get the total number of pages. So use 'simplepagebreak' in cases where you want pagination, but do not want the "jumper" to allow the user to jump to any page in the result set.
* COUNT queries are always the slowest.