0

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 help. Thanks

dotnet-practitioner
  • 13,968
  • 36
  • 127
  • 200

1 Answers1

1

I haven't tried it but since the Enterprise Library source code is available it should be possible to change the cache provider (from ent lib to AppFabric cache).

However I believe Ent Lib cache can exist side by side with AppFabric Cache. From your scenario you can use Ent Lib cache "as-is" for your security block and use "AppFabric Cache" for storing copies of your objects/data in memory.

HTH.