About 1,310,000 results
Open links in new tab
  1. c# - In memory database in .net - Stack Overflow

    Mar 8, 2011 · An in memory database works just like an ordinary database, but the content is stored in memory instead of on disk. This has the effect that all data is lost when the application is shut down. …

  2. Running PostgreSQL in memory only - Stack Overflow

    Oct 24, 2011 · 159 (Moving my answer from Using in-memory PostgreSQL and generalizing it): You can't run Pg in-process, in-memory I can't figure out how to run in-memory Postgres database for …

  3. How can I reset an EF7 InMemory provider between unit tests?

    Nov 3, 2015 · I am trying to use the EF7 InMemory provider for unit tests, but the persistent nature of the InMemory database between tests is causing me problems. The following code demonstrates my …

  4. Unit testing with EF Core and in memory database

    Jan 19, 2019 · This creates/uses a database with the name “MyDatabase”. If UseInMemoryDatabase is called again with the same name, then the same in-memory database will be used, allowing it to be …

  5. How do I make a MySQL database run completely in memory?

    7 If your database is small enough (or if you add enough memory) your database will effectively run in memory since it your data will be cached after the first request. Changing the database table …

  6. No such table - EF Core with Sqlite in memory - Stack Overflow

    Jun 28, 2018 · I'm trying to set up my testing environment, but I have trouble with Sqlite adapter. Each created context has the same connection so, in-memory databse should be built properly for each …

  7. When should I consider using a in memory database and what are the ...

    Oct 20, 2009 · About ACID: in-memory database systems do not lack the 'D' (durability). It simply has to be taken in context. Transactions in a persistent database are durable only so long as the media it's …

  8. Recommendation for an in-memory database - Stack Overflow

    Mar 6, 2011 · 8 The simplest and most widely used in-memory Key-value storage is MemcacheD. The introduction page re-iterates what you are asking for: Memcached is an in-memory key-value store …

  9. Does SQL Server support in-memory database? - Stack Overflow

    I don't know if SQL Server has an in-memory only version. But, you may look into using a cache layer on top of SQL Server. Or, for a pure in memory database, read about things like H2.

  10. sql - in-memory database in Python - Stack Overflow

    Mar 7, 2014 · In-memory databases usually do not support memory paging option (for the whole database or certain tables), i,e, total size of the database should be smaller than the available …