PDA

View Full Version : Help: adv_dyna_entryparsed expiring despite cached entry life 36500


bulbasnore
03-01-2008, 01:59 AM
Now, I know you're going, "this guy is nuts, what does he care?"

Well, I extract the parsed entries to build my document. When they expire, my information disappears. The entry and organizations of Dynamics is pure heaven for my content team, but this unitary document we create with it needs to NOT be in Dynamics native format.

Sigh, of course, we had a big rollout to production on Thursday, and now the end users have started showing us the missing info.

I'm going to work around by EDIT - DO NOTHING - SAVE the first entries, but HELP HELP!

I need a programmatic clue on how to do maintenance to get the cached entries back and keep them from expiring.

Viewing the entries does NOT update the cache.

Brian
03-03-2008, 02:53 PM
There shouldn't be any reason that the cache would be removed before the time limit. You should be able to rebuild the cache at any time though by going to Admin CP => vBa Dynamics => Maintenance => Rebuild Entry Cache

Our Sponsors
 

bulbasnore
03-24-2008, 04:35 AM
Thanks Brian. I think some things had expired prior to me changing the setting.

And with this query:

SELECT `entryid` , `title`
FROM adv_dyna_entries
WHERE `entryid` NOT
IN (
SELECT `entryid`
FROM adv_dyna_entryparsed
)

I am able to determine that all my entries are parsed. Our 'full FAQ listing' pulls html parsed entries via php into a page, so vbcode wont do.