On Tue, 28 Apr 2015 17:11:13 GMT, Dato wrote:

Hi. Thanks for your help. Actually, I'm just looking for a class similar to System.Web.Caching.Cache in .NET https://msdn.microsoft.com/en-us/library/system.web.caching.cache%28v=vs.110%29.aspx. I just want to persist objects in memory across several http calls.

Thanks :)

Well, in this case, you either have the Web interface, or you have to implement it yourself.
Bear in mind that the server is shared between all requests, so you could use this, of some global state.
You might be interested in discussions here: https://github.com/rejectedsoftware/vibe.d/issues/425