Distributed caching with .NET 2.0+ ?
What is the best approach to implement distributed caching with .NET? Edit: I was looking for a general caching schema for internal and external applications ...
What is the best approach to implement distributed caching with .NET? Edit: I was looking for a general caching schema for internal and external applications ...
Has anyone used Oracle Coherence? It looks very promising at the roadshows. My concern is whether it's a stable and robust enough to implement mission-critical financial solutions. I'd be grateful for any feedback on its performance, robustness and ease of maintenance. ...
Is there anyone already implement memcached for production use in Windows environment? Because many blogs that I've read, it's not recommended to run memcached in Windows especially for production use, for example running memcached on windows. And one more thing, which memcached client that is good to use with c# and .net 3.5 ? I've fou...
Has anyone experienced memcached limitations in terms of: # of objects in cache store - is there a point where it loses performance? Amount of allocated memory - what are the basic numbers to work with? ...
I plan to use a distributed cache in my load-balanced webapp. So I'm going to try to abstract out the common functions between apache ehcache and memcached. My goal is to be able to make a simple configuration switch to select the caching solution to use. Should I go the SPI route e.g. like how XML parsers are wired in ? ...
I've been paying some attention to Microsoft's fairly recent promoting of Velocity as a distributed caching solution that would compete with the likes of Memcached. I've been looking for a 64bit version of Memcached for Windows for some time now with no luck, and since everything about the ASP.Net MVC project I'm working on is 64bit, it...
When you create an instance of the cachefactory and then don’t use it anymore the memory that was used during the creation of the object is not released. This will have a substantial effect on all web apps or scenarios where a cachfactory might be created multiple times. The symptoms of this will be unusually high memory use one the pr...
I know that NCache provides SQL dependency for Microsoft SQL Server and Oracle (10G R4 onwards). I am interested to know what other caching solutions are available, that comes with dependency on Oracle? Does Velocity, memcached, etc. support SQL dependency to receive notifications/update the cache automatically, when something changes i...
I am looking into caching solutions, for a multi webserver configuration. Thought of memcached as being cheap (free) and proven over the years. Microsoft is also developing a caching solution for webfarms, called Velocity, but this is still in CTP2. ...
I'm trying to use Memcached and wondering if there is a way to remove the objects from the cache by key pattern rather than just one key per object. Say, I cache user 1 with key "user1", then user 2 with key "user2" ..., is there a way to remove all objects with a key that starts with "user"? Or is there a way to get an enumerator from ...
I'm implementing a high traffic client web application that uses a lot of REST API's for its data access layer from the cloud database. I said client because it implements REST and not provides it. REST APIs are implemented server side as well as client side and I need to figure out a good solution for caching. The application is runni...
I'd like to know if there is any distributed cache systems like memcached, velocity or sharedcache that allows me to tag content with more than just it's name, or that can relate items to eachother, so if i invalidate the cache for one item it also invalidates the related items too. eg. if i have two pages that reference the same data a...
I am looking for a java distributed caching solution. We would like features likes: Distributed Auto-Discovery Redundancy Non-Centralized We've analyzed a framework like TerraCotta which seems to be everything we would ever want from a caching framework... However, there seems to be a central caching node(s) that is required which b...
As a academic project of 6 months in college me and my 3 friends are going to implement "Distributed Caching" in scala language. Being new to both of these concepts and this being our first project I would be really happy if you guys could provide some direction. I am currently learning scala. Please let me know which particular features...
What caching solution will give me the best results both in terms of requests per second that it can handle and in terms of request latency? ...
Hi all Background to question: I'm looking to implement a caching system for my website. Currently we're exploring memcache as a means of doing this. However, I am looking to see if something similar exists for SQL Server. I understand that MySQL has query cache which although is not distributed works as a sort of 'stop gap' measure. Is...
Are there any production-ready distributed caching mechanisms like memcached that can be used in a Windows 64-bit environment? From what I've seen, memcached is run on linux machines in production environments, however I don't have control over the fact that we will be using 64-bit Windows machines. Additional requirements include for ...
I've set up sesion management with Velocity distributed cache. I have 3 servers hosting the cache and created the named cache with new-cache Sessions -Secondaries 1 TTL 1440 and the following is in my web.config file <section name="dataCacheClient" type="Microsoft.Data.Caching.DataCacheClientSection,
 cacheBaseLibrary" al...
I have a service based architecture where a web farm full of asp clients hit application server farm of WCF services. Obviously all the database access is done by the WCF services. Now I would like to cache my frequently used database retrieved objects using Velocity at the service tier level. I am considering to make each physical appli...
I've been comparing distributed caching solutions for an ASP.NET environment and would like to use something FOSS if possible. I've come across SharedCache and seen it recommended by a few people on StackOverflow. Has anyone actually used this in a production environment? I can't find much online about the maturity of this project and...