jason.hill wrote:
Thanks.
Do you know if there is a way to share an app domain across multiple IIS sites?
Essentially, I need to have multiple domain names pointing to the same application code and sharing the same database. I really need to have a single NH cache shared by all of these sites otherwise things could get out of sync.
I need to have separate IIS sites because each domain name will have its own SSL certificate.
Jason
Off of the top of my head, I think you might want to look at MemCache or SysCache2. With SysCache2, I think you can have SQL Server as a backend and use database-based expiry.
I don't know that there's any way to share an app domain across IIS servers. You'd need to create something out of process and then have your app instances call into that process. One of the above options, memcache or syscache2, would probably be easiest.