Multiuser XML document "database" for asp.net app
Posted
by Pierreten
on Stack Overflow
See other posts from Stack Overflow
or by Pierreten
Published on 2010-04-23T15:27:33Z
Indexed on
2010/04/23
15:53 UTC
Read the original article
Hit count: 328
I was thinking about a way to allow multiple users to get CRUD access to an XML document in an asp.net app. The operations would obviously have to be made under the assumption of a multithreaded environment.
For perf reasons, would it make sense to cache the document, and use a mutex on that cached version? When would changes be flushed to the physical XML document?
Any and all recommendations are appreciated (also "use a database" isn't an option at this point unfortunately)
© Stack Overflow or respective owner