What are the modes in which RavenDB be launched?

devquora
devquora

Posted On: Mar 27, 2020

 

RavenDB launching can be done in the following modes. It can be launched in:

  • Console mode: This is the mode best suitable for learning and testing.
  • Hosted by IIS (Internet Information Server): This mode is the most common one to run RavenDB in a production environment.
  • Windows Service Mode:  RavenDB creates its own HTTP server and then process requests of the users internally.
  • Embedded mode: In this mode, RavenDB is embedded in user’s application and may run completely in memory itself.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    RavenDB Interview Questions

    What are the features of RavenDB?

    RavenDB provides for the following features:Performance: RavenDB can achieve 100,000 writes per second. Moreover, one..

    RavenDB Interview Questions

    What is RQL?

    RQL stands for Raven Query Language is similar to any SQL language.It is used to get the data from the server when any ..

    RavenDB Interview Questions

    What are the keywords and methods available in RQL?

    Keywords and methods available in RQL are: DECLARE, FROM, INDEX, GROUP BY array() WHERE id(), search(), cmpxchg(), boo..