Single windows service to provide access to cached data?
Posted
by Matthias
on Stack Overflow
See other posts from Stack Overflow
or by Matthias
Published on 2010-04-23T08:35:57Z
Indexed on
2010/04/23
9:23 UTC
Read the original article
Hit count: 240
I need a solution where I have a single windows service providing access to cached data to various consumers: To an MVC web application, a .Net Assembly (COM interop) used within an classic ASP page, other windows services, a windows forms application. So the data must be accessible from various processes. The data being cached is read-only. For now, all processes are located on the same machine. The environment is .net framework 3.5 and c#.
My question is, how can multiple appdomains/processes retrieve cached data from a single windows service?
© Stack Overflow or respective owner