IIS Targeted Workflows on Demand

Ok, weird setup, weird question. We have a Client and Admin application for our SaaS application running on asp.net-2.0 / iis-6. Admin application can change the parameters displayed in the client application. When these parameters are stored in Admin, we call Webservice on the client from Admin to clear our options cache for this particular account.

Recently, we started providing our client application> 1 Worker Processes, which caused the options cache to be cleared only on 1 of the current work processes.

So, I obviously have other options for fixing this problem (however input is welcome), but my question is: is there any way to target / repeat each workflow through a web request?

+3
source share
2 answers

I make some assumptions here for this answer ....

  • I assume the client application uses one of the .NET caching classes to store your application settings?

  • When you say "flush", do you mean to dump them back to the configuration file or db table?

, , , ( , , ).

, DB (, SqlCacheDependency), , .

0

, , .net Cache. flush Cache.

, . )

- sql , . , , w/o sql.

0

Source: https://habr.com/ru/post/1698264/


All Articles