Hi everyone,
I am using AJW Feed Parser (http://devot-ee.com/add-ons/feed-parser/) to parse an XML feed into my EE templates. All going fine except I’m experiencing slow loading times when fetching 24 objects of /root/advertentie of the following feed: http://www2.autodealers.nl/advertentieXml.aspx?did=2756
This is the code I am using:
{exp:ajw_feedparser
url="http://www2.autodealers.nl/advertentieXml.aspx?did=2756"
itempath="/root/advertentie"
cache_refresh="60"
limit="{embed:per_page}"
offset="{embed:xml_offset}"
parse="inward"
}
[some html and variables here]
{/exp:ajw_feedparser}It’s taking Expression Engine about 4.5 - 6 seconds to load the page and the while using a limit of 24 objects, it doesn’t really matter how much objects I fetch.
Debug output shows the delay is clearly within the AJW Feed Parser:
(3.545572) Calling Class/Method: Ajw_feedparser/
(3.545679) -> Class Called: Ajw_feedparser
(5.211717) -> Method Called: Ajw_feedparser
(5.211856) -> Data ReturnedIs there any way to speed up this process or am I just loading to much data into the feed parser at once?