Questions tagged [appfabric-cache]

AppFabric Cache is an in-memory distributed cache available on Azure or on Windows Server.

Microsoft Windows Server AppFabric, formerly codenamed “Velocity,” provides a distributed cache that you can integrate into both Web and desktop applications.

Some features :

  • Nuget Client package
  • Cache Notifications
  • Local cache
  • Concurrency Methods
  • Eviction & Expiration
  • High Availability
  • Encryption & Security features

More info

157 questions
0
votes
1 answer

Is it possible for a wcf service to take an SQLcommand object as an input?

I'm asking this because I would like to store those command objects in appfabric cache and execute them at a later stage through a batch once a day. (to reduce the number of uneven database hits). These are pure update statements and don't return…
krishwader
  • 11,341
  • 1
  • 34
  • 51
0
votes
2 answers

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 applications use the same tables). After optimizing…
MaltMaster
  • 758
  • 1
  • 10
  • 25
0
votes
1 answer

How to get a clean IQueryable?

I have a problem with a Entity Framework and appFabric caching. I need to generate a key of the query statement but in the Where clause i get the parameter value is equal than @p_linq_0. How do I replace to the true value? Thanks
0
votes
2 answers

How is the performance of appfabric caching with a lot of requests?

When a user logs in to application I'm loading all his data from the database to the distributed cache. This means that unless there is a problem with the cache, I'm never going to select data from database again until the user logs out. Is this…
SimpleDesign
  • 871
  • 6
  • 10
0
votes
1 answer

Minimal size taken by a small object in AppCache

Get-CacheStatistics command shows that any small object (even 1 Integer) takes at least 1024 bytes in cache memory. Is it correct and is there any way to adjust AppCache to handle memory more efficient for small objects?
0
votes
1 answer

httpruntime.cache on local machine and appfabric cache on servers

Can any one help me develop an cache architecture where I can use httpruntime.cache when using localmachine (for development purposes) and use appfabric cache when application running on server? I currently have the appfabric code already…
quickLearner
  • 141
  • 2
  • 12
0
votes
1 answer

AppFabric configuration issue with dataCacheClient vs dataCacheClients

I'm trying to get AppFabric working in my Asp.net application, everything works fine if I use c# code to do the configuration. But I'm having a real hard time to get it to work from web.config. If I have the following in the web.config,
Ray
  • 12,101
  • 27
  • 95
  • 137
0
votes
1 answer

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 are added to the cache, a CacheItemPolicy is…
Neil
  • 2,688
  • 1
  • 23
  • 32
0
votes
1 answer

Does the AppFabric Cache provider for ASP.Net Session State allow for a backing store?

AppFabric Cache may lose session state if there is RAM pressure on the cache cluster nodes, or if the cluster is not in high availability mode and a node is lost (e.g. fails or is rebooted). Typically a backing store would be used in those…
redcalx
  • 8,177
  • 4
  • 56
  • 105
0
votes
1 answer

Windows Server AppFabric Cache Time-out based invalidation callback

I am using Windows Server AppFabric Caching in our application with local cache enabled. This is configured as following: I have setup time-out based invalidation…
Gaurav
  • 895
  • 3
  • 14
  • 31
0
votes
2 answers

App Fabric : While GET misses an Enum property

I have a class marked as CollectionDataContract which has a enum member. When I place an object of this class in Appfabric, I am through. When I get it back from App fabric, it does not deserialize the enum member. But I am not sure if the enum has…
Dhanasekar Murugesan
  • 3,141
  • 1
  • 18
  • 21
0
votes
1 answer

Enterprise library security caching using AppFabric caching

Is it possible for Enterprise library security block to use AppFabric caching as opposed to EnterpriseLibraryCaching? Can I just simply swap out the default caching block and use AppFabric caching instead to get my identity and principal? Please…
dotnet-practitioner
  • 13,968
  • 36
  • 127
  • 200
0
votes
1 answer

appfabric VM issue: The server has rejected the client credentials

Possible Duplicate: AppFabric client Virtual Machine issue I can SUCCESSFULLY connect to app fabric cache cluster server from my dev machine. But when I try to do via VMWare VM hosted .net application, I get the following error:…
dotnet-practitioner
  • 13,968
  • 36
  • 127
  • 200
0
votes
2 answers

AppFabric Cache Dependency

Is there any way that I can put objects into the cache with a dependency? For example if I put ObjectB into the cache with a dependency on ObjectA so that when ObjectA expires or I remove it ObjectB will also automatically be removed? I know that I…
David
  • 1,203
  • 6
  • 25
  • 48
0
votes
2 answers

How to set Windows Server AppFabric named cache size?

I'm currently evaluating Windows Server AppFabric as a distributed cache solution. If we implement AppFabric, we'd have something like 3 or 4 different web applications using it for caching. I've seen that AppFabric provides the ability to created…
chris.house.00
  • 3,273
  • 1
  • 27
  • 36
1 2 3
10
11