2

How to read data from cache saved in microsoft velocity from classic asp?

If above is not possible, then what if I use memcache instead? Then is it possible and worth it to read memcache from classic asp?

peterh
  • 11,875
  • 18
  • 85
  • 108
Raj
  • 6,810
  • 6
  • 48
  • 56

2 Answers2

2

For memcached, I am looking in the following two examples below:

There is an enyim interop library that is available that looks like it will do the trick. The site below has decent documentation on how to get it working:

https://github.com/enyim/membase-interop

Or take a look at the following article which links to a library you might be able to use:

https://vrobert.fr/2011/06/memcached-component-for-classic-asp/

http://drcarter.info/2011/06/memcached-component-for-classic-asp/ (dead)

slolife
  • 19,520
  • 20
  • 78
  • 121
1

The AppFabric caching client libraries are .NET-only, you can't use them directly from ASP.

You might be able to get round this if you were to write a COM-visible object in .NET (a facade, effectively) that you could instantiate in your ASP pages that would talk to the AppFabric cache.

PhilPursglove
  • 12,511
  • 5
  • 46
  • 68