Tagged Questions
1
vote
1answer
31 views
Error in client configuration file
I am trying to create an AppFabric cache client which is a console application. But receives the error Error in client configuration file while creating new instance of DataCacheFactory. Connection ...
2
votes
1answer
65 views
OptimisticConcurrencyException: Multiple EF based applications using shared AppFabric cache and same database
I am using a web application and a windows service on the same machine as Appfabric.
Both applications reuse same DAL code (dll) which is EF (Entity Framework) Code-First based and accessing the same ...
0
votes
2answers
56 views
Reduce SQL Server overhead caching query results
I have a software who does a heavy processing based on some files.
I have to query some tables in SQL Server in the process and this is killing the DB and the application performance. (other ...
2
votes
1answer
71 views
Why do I have multiple cache items in my AppFabric cache with the same key?
I have my website code on two servers and I want a shared cache between them, so I am using Microsoft AppFabric. I only ever want there to be one item in the cache -- not one item per site visitor, ...
2
votes
3answers
94 views
ASP .NET Application Caching
Our site developed in ASP .NET is expecting a 1000 concurrent users and its performance is degrading by increasing number of listings in DB. What kind of a caching(like NCache or Appfabric) will be ...
1
vote
2answers
50 views
Correct Cache Architecture for Multiple Sites
Im struggling with a scenario regarding accessing a single cache across multiple web applications on a single web server (IIS 8 / Windows Server 2012).
Currently we have a server with 16GB of memory, ...
1
vote
1answer
59 views
AppFabric DataCache GetValues by keys?
How can I use AppFabric DataCache and get values by keys?
eg. I want to do:
string[] keys = new []{"key1","key2", ...,"keyLast" }
object[] values = factory.GetCache("MyCache").Get(keys);
This ...
0
votes
0answers
38 views
AppFabric cache freeze during one or two seconds sometimes
I've a server with an application and 4 servers of cache.
My application request cache server near by 300 by second.
Everything works successfull, but sometimes, the response times increase during 1 ...
1
vote
1answer
92 views
Evaluating AppFabric and have some newbie questions like why does setting up AppFabric require a database or xml?
I'm new to AppFabric and I'm evaluating a distributed cache solution for a production environment and I'm in a Microsoft shop using Asp.net MVC and WebApi, and we are not using Windows Azure.
In ...
1
vote
1answer
53 views
Updating cache on update of database table
I am using AppFabric to handle the caching capabilities of my website. I would like the
products cache to be updated once there has been a change within the products table
within my database. I read ...
0
votes
1answer
66 views
AppFabric rebuild cache without affecting application performance
I'm researching the use of out of process caching in my ASP.NET web application. I'm looking for functionality that allows me to rebuild the cache from scratch without having the end user wait for it ...
2
votes
1answer
64 views
Can AppFabric be deployed on Windows 7?
I wish to use AppFrbric 1.1 for data Caching in several use cases. The system requirements on the it's download page suggest that it is meant for Windows Server 2008 and above, for production ...
0
votes
1answer
60 views
AppFabric and CachingPolicy/ChangeMonitors
We're investigating moving to a distributed cache using Windows AppFabric. Our ASP.NET 4.0 application currently has a cache implementation that uses MemoryCache.
One key feature is that when items ...
0
votes
0answers
44 views
AppFrabric Cache is cleared but acting like its not
So, I have an interesting problem. We are using AppFabric and caching a bunch of data off to it. Have some aspects that will store into cache and a method to clear the cache of specific keys when ...
0
votes
1answer
52 views
How to keep your distributed cache clean?
In a N-Tier architecture, what would be the best patterns to use so that you can keep your cache clean?
I know it's easy to just set an absolute/sliding timeout, but is there a better mechanism ...
0
votes
3answers
433 views
Caching framework for ASP.NET MVC / Azure
I am building an ASP.NET MVC application, which may be hosted in Azure. Multiple instances of the application may be running in Azure. We may or may not use Azure AppFabric Caching.
How do we ...
0
votes
1answer
73 views
AppFabric Caching - works locally but not from another machine
I've have added my domain account permissions to Windows AppFabric 1.1 Caching using the "grant" Powershell command. A sample app runs locally on the machine itself fine. Also, I'm able to telnet to ...
0
votes
0answers
126 views
AppFabric Read-Through Cache; Unable to specify a timeout…?
I have implemented a Read-Through cache using AppFabric by extending DataCacheStoreProvider.
Once the data has been retrieved from the datasource, a DataCacheItem is created for return by calling ...
1
vote
2answers
469 views
Accessing App fabric Cache from Multiple Clients
I am trying to setup a website on multiple hosts and these applications make use of App Fabric Caching framework.
I have setup the App Fabric using SQL Server (not XML) on Machine1 and I used "NT ...
0
votes
1answer
264 views
distributed caching (AppFabric) and cache dependencies
Is it possible to have 'Cache Dependencies' in AppFabric, or any other distributed cache system, similar to what you can do using the HttpRuntime cache of ASP.Net, using the CacheDependency class?
...
1
vote
1answer
48 views
Why does ItemCount go down, but nothing was evicted?
I have perfmon running w/ the counters indicated here, it never shows anything getting evicted, but when I run Get-CacheStatistics in powershell, the ItemCount is constantly increasing and decreasing. ...
2
votes
1answer
314 views
Using a mix of AppFabric local cache and server cache
I'm just starting out using AppFabric...
My application is in healthcare - we have about 15000 users of the system and they access patient information in bursts (e.g. think of a team of ...
2
votes
2answers
269 views
AppFabric cache client rejection
I have set up an AppFabric CacheServer on a webserver, in a different domain.
When I try to access it I get the exception:
The server has rejected the client credentials.
InnerException: The logon ...
1
vote
0answers
168 views
Windows Server Appfabric Caching Timeouts
We have an application that uses Windows Server AppFabric Caching. The cache is on the local machine, local cache is not enabled. Here is the configuration in code, none in .config.
...
0
votes
0answers
79 views
Appfabric stops working when I set Ec2SetComputerName to disabled
Appfabric is running on ec2 instance A, client is running on instances A and B. I can connect and use cache from both instances.
If I set setting Ec2SetComputerName in C:\Program ...
2
votes
1answer
71 views
Is it feasible to use a distributed cache for queryable data sets?
My scenario is as follows. I have a data table with a million rows of tuples (say first name and last name), and a client that needs to retrieve a small subset of rows whose first name or last name ...
0
votes
1answer
279 views
How to install AppFabric 1.1 for Windows Server on Windows 8 Release Preview?
How to install AppFabric 1.1 for Windows Server on Windows 8 Release Preview? When I try to install it in on Windows 8 Release Preview a get the message
"WIndows Server AppFabric is not supported ...
0
votes
1answer
37 views
AppFabric after installing I can not see the cluster of chache because I do not see commands powershell
After installing AppFabric cache I can not see the cluster of cache because I do not see caching commands in Powershell.
If I run the command Get-Help * cache * I get the following results:
...
0
votes
1answer
104 views
How to deal with data contention in AppFabric under the optimistic concurrency model?
According to this MSDN page, "Put supports optimistic concurrency by taking version information as an optional parameter; Put only succeeds if the object to be replaced is of the same version."
...
2
votes
2answers
360 views
Caching Entity Framework results in Azure AppFabric
I'm trying to figure out how to cache EF query results in an Azure AppFabric cache. Currently I'm using the LoreSoft EntityFramework extensions to deal with the caching (http://bit.ly/LWSywm). It ...
2
votes
1answer
597 views
How to restart specific named cached in AppFabric
I have installed AppFabric on server and I want multiple instances to point to the cache. So I created named cache for each instance and pointed app to these caches.
Now I want to clear cache of a ...
2
votes
1answer
583 views
APPFabric Caching or SQL server - Specific scenario
I am having difficulties figuring out if APPFabric caching or SQL Server should be used in the context of our needs (considering the fact that we are currently using SQL server for most things).
We ...
18
votes
1answer
4k views
Is Redis just a cache
I have been reading some Redis docs and trying the tutorial a http://try.redis-db.com/. So far I can't see any difference between Redis and caching technologies, like Velocity, or the Enterprise ...
1
vote
2answers
1k views
Error accessing AppFabric Cache
Im trying to get the Appfabric Cache running with IIS7 using an MVC asp.net project.
Using the XML-configuration provider in a shared directory.
I can access the AppFabric Cache when using the ...
0
votes
1answer
228 views
Windows Azure Cache Perverting Value
I've setup my Windows Azure project to use my App Fabric Cache. However when I initialize (Put) a value into the cache and read it back it is either null or 0 in some cases. Why is this?
I am ...
1
vote
1answer
614 views
How to create regions on App Fabric via Powershell
I think the title is clear, I'm surfing the web about an hour but every single page talks about creating regions dynamically using .net. I'm sure we have a command to execute on powershell. do you ...
2
votes
0answers
144 views
DataCache get all named regions
I'm trying to create a monitoring tool for the appfabric cache servers.
These servers accept "Put" and "Get" calls from multiple enrironments, each to it's own distinct "named" Region.(In order for ...
1
vote
0answers
261 views
appfabric performance in server cluster
I am currently working with appfabric in a distributed web server environment where appfabric is used as the distributed caching mechanism.
I have set up appfabric to run on 4 web servers with a ...
0
votes
1answer
120 views
Session sharing with StateStitch and AppFabric
We have an application with ASP and ASP.NET. We use StateStitch for the session sharing and stateserver setup for persisting (caching) sessions.
Now we want to implement High Availability and ...
0
votes
1answer
245 views
notify local cache of change in cache cluster
I am using appfabric caching in my c# application. I have enabled local cache.
When I add, remove, update or delete an item from my cache cluster I would like to send a notification that such has ...
1
vote
1answer
269 views
AppFabric Server cache returns dll object with null values
I'm new with AppFabric Server caching but after playing around with it everything has been working like a dream.
I can add for example datatables to my cache and get that back to use just fine.
I got ...
1
vote
1answer
809 views
AppFabric Caching Service Crashes
I have a WCF 4.0 service hosted in IIS 7.5 on Windows 2008 R2 Enterprise 6 bit servers. The WCF service is configured to use ASP Compatibility].
On the Production and QA environments, we have a load ...
0
votes
1answer
76 views
It's possible to add in windows an account of other domain? Appfabric cache configuration
We are having troubles with appfabric cache, if we do not use security, it works fine, if we use security, we need to add in the server an account from another domain and grant access to it in ...
3
votes
1answer
914 views
Appfabric cache ErrorCode<ERRCA0016>:SubStatus<ES0001>
I have the following code:
static void Main(string[] args)
{
var config = new DataCacheFactoryConfiguration()
{
Servers = new List<DataCacheServerEndpoint>
...
0
votes
1answer
148 views
.Net 4 Framework Object Caching and Tags
I had a look at .Net Framework Object Caching (System.Runtime.Caching) API and I do not see any support for attaching "tags" to cached objects.
I was looking for an API similar to that of AppFabric ...
2
votes
1answer
565 views
Adding Named Data Cache Programmatically in Appfabric
I want to add named data cache programmatically in appfabric.
I kept following code for this :-
try
{
//This can also be kept in a config file
var config = new ...
0
votes
2answers
104 views
Whats the idea behind appfabric cacheing tags
I've been reading about appfabric caching. And one of the features is tagging cache entries. What would this be useful for? Some of the examples mention tagging products with their category and then ...
1
vote
1answer
247 views
Caching pattern on Appfabric (Whole list Vs individual items)
I have a web application that stores project in the database.
I have decided to use App Farbic Caching to speed performance.
What would be the best pattern regarding the below (or on which criteria ...
2
votes
1answer
2k views
AppFabric 1.1 Caching (crashing windows service)
I have a test installation of AppFabric 1.1 x64 (Hosting + Cache) on a single machine (domain-registered, Windows 7 Enterprise). Installation and configuration went flawlessly (cluster with just 1 ...
1
vote
1answer
323 views
Region name restrictions in AppFabric Cache
We use Windows Server AppFabric Cache 6.1 x64. Having an instance of Microsoft.ApplicationServer.Caching.DataCache and trying to get an object by key/region causes DataCacheException if the region ...
