I've a couple of questions regarding the (excellent) CouchDB .NET client MyCouch:
- Is there some built-in retry policy in case of "transient" failure (like the server responding 503)?
- Should instances of
MyCouchClient
orMyCouchStore
be cached to be reused? Right now I'm creating one for each incoming request, but I'm wondering if that incurs a performance penalty. - I would like to customize the configuration of Json.NET as used by MyCouch, like adding a
new StringEnumConverter { CamelCaseText = true }
to the list ofConverters
. Is there a way to achieve that through the API?
Thanks