Matt Hicks
Matt Hicks
Though I'm not using `withHttp` because I want to return a `Future`, I am using `onComplete` to close the connection. Is this my problem? Is `onComplete` running asynchronously after the...
I tried adding: ```scala andThen { case t => { http.close() t } } ``` to my returned `Future` but the exceptions still fire.
I'd welcome a PR. I'd prefer the code style remain consistent, and I might offer some feedback, but I don't hold any hard and fast rules.
@gregsilin, is this something you're still interested in?
That sounds great. If you haven't noticed, I've been making significant changes and improvements to this project and intend a 1.9 release tomorrow. It doesn't sound like you'll have a...
That's not on the current roadmap, but it doesn't appear too difficult to add. Would you be interested in tackling it yourself? My schedule's pretty busy lately, so it might...
https://lucene.apache.org/core/7_7_1/grouping/org/apache/lucene/search/grouping/package-summary.html
This works as of 1.7.0 for Scala 2 only
Scribe uses `sourcecode` since 3.x and it works beautifully with `scribe-cats`.
try something like this instead: ```scala val id = 1 val name = "Name1" val query = cypher""" CREATE (b: Node) SET b.id = $id SET b.name = $name RETURN...