From 5359a039f198f263ea0b892f56251f1ed41965fb Mon Sep 17 00:00:00 2001 From: "E. H. Rast" Date: Sun, 17 May 2020 19:05:19 +0100 Subject: [PATCH] Updated Readme. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2db80f5..8d0d9dc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # concstore -Concurrent uint64 key - value in-memory store for Go + Concurrent uint64, interface{} and int, interface{} maps for Go. `UMap` is a concurrent uint64 key - value in-memory map for Go. `IMap` is a concurrent int key - value in-memory map for Go. + +These are currently just wrappers around `sync.Map`, but the point is that if you use the abstraction layer you can easily change the implementation later. That's the point of this package.