is possible deploy custom .net module own "app service plan" (the machines run azure web apps)?
the following problem led me question: i'm thinking doing fancy caching speed web application. caching logic have in mind in-process, cache rather large amount of data slow build up. since build-up must happen before request can served, gives web app long warm-up time after each app pool recycling.
the caching code updated infrequently, factoring part out in iis module may advantageous, recycling of app pool leave cached data in-memory.
however, suspect isn't possible azure web apps - thought prudent ask community make sure.
it's possible create custom iis modules , deploy them individual web apps. can bundle module web app code (i.e. dll file in /bin directory) , configure in application's web.config. more info here: https://msdn.microsoft.com/en-us/library/vstudio/ms227673(v=vs.100).aspx
of course, need bundling individual web apps. in question, mentioned app service plans, , there isn't way automatically include , register them independent of web apps.
Comments
Post a Comment