312k1t
312k1t

Reputation: 269

Caching to files (not memory) in ASP.NET

Is there any simle way how to save objects to files in selected directory?

I have:

I need: some solution, where I can

Upvotes: 0

Views: 142

Answers (1)

kmcc049
kmcc049

Reputation: 2801

.Net has the ability to create custom cache providers.

I have seen articles on how to create a disk based one.

here is a link on creating a mongodb based one. Dependent on your experience level that may be enough to see you through. http://msdn.microsoft.com/en-us/magazine/gg650661.aspx

I'll see if I can find the article about the disk based one.

found it https://web.archive.org/web/20211020121627/https://www.4guysfromrolla.com/articles/061610-1.aspx

Upvotes: 3

Related Questions