Hello!
Ok.
From what I can tell, the rss engine of wordpress cache the result in the wp_options table, in the database.
Is there a way to disable the cache when I call fetch rss ?
I tried :
define('MAGPIE_CACHE_ON', 0);
define('MAGPIE_CACHE_AGE', 0);
With no success...
I have a feed from a wordpress on domain A to display to a wordpress on domain B... It takes forever, the feed doesn't update when I write a new post...
When I drop the cache fields in the wp_option table, the feed updates in a second... So I figure that if I could disable the cache, I will solve my problem...
S.