Anatoly

Results 22 issues of Anatoly

## 2 * X queries vs. 1 currently a single transaction with a batch `X` of documents does `2 * X` SQL queries. it looks whether the document exists first...

performance

first off, thank you for creating and maintaining this library! I see #134 and #76 and also that spec [takes a single host](https://github.com/ptaoussanis/carmine/blob/master/src/taoensso/carmine/connections.clj#L220) Looking to make sure a client can...

There is a single Java file used (it has observable state and transient things that are not easily translated to Clojure), that lives under `src/java`. The normal flow: lein, compile,...

Would be niice to have open `around` hooks into lifecycle methods. This would address "cross cutting concerns": - logging - exception handling - security - performace - transaction management -...

In case of indirect dependencies sometimes it is needed to specify a particular order in which they start. For example if we have a message bus and a subscriber that...

There is a valid security concern to read configuration as EDN: > what if someone injects bad EDN that would steal all the money? While in most cases it won't...

Currently the default configuration format is EDN, but cprop [also knows](https://github.com/tolitius/cprop/blob/master/src/cprop/tools.clj#L13) how to work with `.properies`, so it make sense to add a reader for that. Also nothing stops cprop...

``` cluster wide chart here ================================ ;; per member charts below 10.1.1.1 g/s ---------------- p/s ------- h/s --------- ................................ 10.1.1.2 g/s ---------------- p/s ------- h/s --------- ................................ 10.1.1.3 g/s ----------------...

for example, here is relevant stats hz collects for map get ops: ``` java public void incrementGets(long latency) { GET_COUNT_UPDATER.incrementAndGet(this); TOTAL_GET_LATENCIES_UPDATER.addAndGet(this, latency); MAX_GET_LATENCY_UPDATER.set(this, Math.max(maxGetLatency, latency)); } ``` neither current or...