-
-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide map interface for kv store - clojure.lang.IPersistentMap or java.util.Map ?! #109
Comments
Besides some added convenience, I assume that a motivation is to expose the capability of atomically updating some key values? |
If that can be done it would be awesome, but I will open another issue for that since IMO it's something else. |
* implemented AutoCloseable close * implemented Map clear, size, containsValue, isEmpty
* implemented AutoCloseable close * implemented Map clear, size, containsValue, isEmpty
(note to self) https://github.com/google/guava/tree/master/guava-testlib |
It might be helpful to leverage a high performance caching solution to implement this: |
… top of datalevin
* implemented AutoCloseable close * implemented Map clear, size, containsValue, isEmpty
* We need more infrastructure to test this
… top of datalevin
* implemented AutoCloseable close * implemented Map clear, size, containsValue, isEmpty
* We need more infrastructure to test this
It would be great if we could datalevin kv store could implement IPersistentMap or java.util.Map ?!
A map interface that can be used in clojure code.
https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/IPersistentMap.java
https://docs.oracle.com/javase/8/docs/api/java/util/Map.html
The text was updated successfully, but these errors were encountered: