I have a custom data provider pulling in data via a webservice.

I have pretty much followed this example here: http://www.techphoria414.com/Blog/Black-Art-of-Sitecore-Data-Providers.aspx

Sitecore seems to be caching my data provider though. For example, I load my application for the first time, and the data get pulled from the provider as I would expect. However, if i collapse the tree and reopen it again, I would expect by provider to be called again, but it is not.

I thought it might be stored in the prefecth cache or in a lucene index, but clearing those didn't cause a call back to my provider again.

How do I tell it to always get data from my data provider?

link|improve this question

Turns out the issue was a bug in my own code. If you want to disable caching on your provider though, you can do this.CacheOptions.DisableAll = true; – Lee Cook Sep 5 '11 at 14:02
Lee, when you get a moment you should answer your question rather than just leave a comment. – James Gardner Sep 7 '11 at 4:30
feedback

1 Answer

up vote 1 down vote accepted

Turns out the issue was a bug in my own code. If you want to disable caching on your provider though, you can do this.CacheOptions.DisableAll = true;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.