A few months ago, I played with RavenDb and Azure, and I successfully got it by placing the server in a working role by completing this excellent blog post .
However, I just created a new project and tried to repeat the article again, but it looks like it has also changed with raven files from that blog. Noteworthy:
- There is not just the NuGet "RavenDB" package, but many of them: RavenDB Client, RavenDB Database, RavenDB Embedded, RavenDB Server and RavenDB Asp.Net Hosted server.
- When installing "RavenDB Server" (this seems to be most suitable for a working role), it no longer has the same DLL files that are mentioned in the article, and there is no more .xap file. I tried just to reference Raven.Database.dll, but when I try to start it, I get an exception
InvalidOperation: "Different number of tables stored in the Munin file."
Can someone provide me with the steps necessary to run RavenDB in a working role?
Running RavenDB as a working role is the best way, or is there a better way to run it on Azure? (It needs to be consumed by several websites).
source
share