Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 503 Bytes

Stores_InMemory.md

File metadata and controls

15 lines (10 loc) · 503 Bytes

InMemory Store

To configure the store:

IMySettings settings = new ConfigurationBuilder<IMySettings>()
   .UseInMemoryDictionary()
   .Build();

The store supports reading and writing, and stores configuration in the application memory. When application restarts all the setting values are lost. You may want to use this store for debugging or testing, other that that it has no real applications.

Collections

Collections are supported by using the flatline syntax.