diff --git a/README.md b/README.md index e9263ed..c0eed03 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Support Databases | Database | Support | | ---------- | ----------------------------------------------------------------------- | | MongoDB | Yes | -| In Memory | Not yet [#5](https://github.com/TinkoffCreditSystems/Horarium/issues/5) | +| In Memory | Yes | | PostgreSQL | Not yet [#6](https://github.com/TinkoffCreditSystems/Horarium/issues/6) | ## Getting started @@ -44,7 +44,7 @@ public class TestJob : IJob Create ```HorariumServer``` and schedule ```TestJob``` ```csharp -var horarium = new HorariumServer(MongoRepositoryFactory.Create("mongodb://localhost:27017/horarium")); +var horarium = new HorariumServer(new InMemoryRepository()); horarium.Start(); await horarium.Create(666) .Schedule(); @@ -258,3 +258,4 @@ new HorariumSettings MaxRepeatCount = 1 }); ``` +