Dave New
Dave New

Reputation: 40092

In-role, co-located caching & CacheService.exe

We utilise Azure's co-located In-Role caching in our web roles.

When looking at memory usage in Window's Resource Monitor, I see that a "CacheService.exe" is consuming a large portion of available RAM:

CacheService.exe

Is this the cache cluster used by the in-role cache? And can I roughly assume the total, cumulative size of all my cached objects by looking at CacheService.exe's memory usage?

Upvotes: 1

Views: 165

Answers (1)

Pallav Priyadarshi
Pallav Priyadarshi

Reputation: 26

Yes, CacheService.exe is the executable for In-Role cache. If this is causing bottleneck for your application, you should consider using dedicated In-Role cache instead of an In-Role one.

Upvotes: 1

Related Questions