Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the compatible in memory db for azure cosmos db

I am integrated my spring boot application with azure CosmosDB-SQL API and for integration test cases i want to use in memory database but trying with H2 in memory it's not working

like image 490
prasanna chouta Avatar asked Mar 19 '19 13:03

prasanna chouta


People also ask

Is Cosmos in memory database?

The Azure Cosmos DB integrated cache is an in-memory cache that helps you ensure manageable costs and low latency as your request volume grows. The integrated cache is easy to set up and you don't need to spend time writing custom code for cache invalidation or managing backend infrastructure.

Which databases are supported by Azure Cosmos DB?

Azure Cosmos DB Core (SQL) API supports Java, Node. js, Python, . NET and JavaScript, and enables you to use the SQL language to write rich queries over JSON items.

What are the storage limits of Azure Cosmos DB?

By default, serverless containers can store up to 50GB of data. Store up to 1TB of data in new and existing serverless containers today.

What type of data is stored in Cosmos DB?

Cosmos DB is a multi-model database, i.e., it can be used for storing data in Key-value Pair, Document-based, Graph-based, Column Family-based databases.


1 Answers

In my previous project I used CosmosDB and MongoDriver. In the integration test I had to use in-memory DB so I used Mongo2Go. It has worked really good.

like image 184
peyman gilmour Avatar answered Nov 02 '22 22:11

peyman gilmour