I'm trying to understand the cache'ing features of SimplePie on linux. It never tells us to create a separate mySql database for the RSS feeds, so i'm guessing all the cache is done locally. (in the /httpdocs/ directories ? )
I can't figure out how SimplePie stores it's articles once their imported...(using default install on linux instructions) and how long these articles are stored in the DB.
This issue is mostly regarding SimplePie with a simple pagination setup as specified on their site here -
http://simplepie.org/wiki/tutorial/how_to_do_item_paging
But the thing is, it only keeps a certain amount of items (articles) before they overwrite each other.
For example, I have a basic little SimplePie page setup here -
http://www.oil-gas-prices.com/
at the bottom, it always cuts off at around 76. (showing 1 - 10 of 76)
I want to specify a 1000. So that it cuts off around there.
Adjusting any of these specific values below does nothing to increase the overall amount of indexed / cached items :
// Set our paging values
$start = (isset($_GET['start']) && !empty($_GET['start'])) ? $_GET['start'] : 0; // Where do we start?
$length = (isset($_GET['length']) && !empty($_GET['length'])) ? $_GET['length'] : 5; // How many per page?
$max = $feed->get_item_quantity(); // Where do we end?
My main priority is to store more in the cache, without other articles overwriting them, thus lowering the number of stored items.
I've got the latest version of SimplePie installed on the linux. No wordpress extensions or anything.
I appreciate any help very much . It's so hard to find legit SimplePie help these days,