model view controller - ServiceStack selfhosting disable caching for memory -
using selfhosting standard servicestack mvc application every request cached in memory. changing js file have no conscience until restart server. there way around problem developing purposes?
every request not cached in memory, when you're self-hosting it's running binary dlls , static files copied /bin
folder.
you can change config.webhostphysicalpath
change servicestack serve files solution folder instead, e.g:
setconfig(new hostconfig { #if debug debugmode = true, webhostphysicalpath = path.getfullpath(path.combine("~".mapserverpath(), "..", "..")), #endif });
Comments
Post a Comment