John Sullivan

Results 39 issues of John Sullivan

Cassandra compression on disk is currently hardcoded as SnappyCompressor. add a configuration flag to support other compression schemes. http://docs.datastax.com/en/cassandra/2.0/cassandra/operations/ops_config_compress_t.html https://www.pivotaltracker.com/story/show/132541903

help wanted
low hanging fruit
cassandra

There are a couple tests that intermittently fail on travis. i cannot reproduce the failures at home. I'm pretty convinced they arise from the fact that travis is using an...

help wanted
low hanging fruit
build

i.e., `prop IN ("a", "b")` all current back ends support this, so it would be useful to have. This is on my story board here: https://www.pivotaltracker.com/story/show/127771699

help wanted
low hanging fruit
queries

Add support for binary data. This should be relatively easy with the current implementation. Just add some kind of binary type (e.g. an `Array[Byte]`) to [basicTypes](https://github.com/longevityframework/longevity/blob/master/emblem/src/main/scala/emblem/emblematic/basicTypes.scala). This would in turn...

This is a pretty open-ended and undeveloped idea. See what opportunities we have for better Play integration by creating a Play plugin.

help wanted
low hanging fruit

This is a pretty open-ended and undeveloped idea. Whatever we can do to support integration with Spark. Probably the easiest thing to do would be to stream into Spark with...

help wanted
low hanging fruit

Hi Ingo! Here's a wrapper for JPopupMenu. I hope you can use it! Best, John

I'm getting an `InterruptedException` in `ZConnectionPool.transaction`. I am unable to `mapError` or `tapError` on the failure. When I run it unsafe, I get a `zio.Exit.Failure`. Nothing I have tried has...

The following code: ```scala val key = "some key" val subject = "subject with punctuation (%)" val encoded = Jwt.encode(JwtClaim(subject = Some(subject)), key, JwtAlgorithm.HS512) val decoded = Jwt.decode(encoded, key, Seq(JwtAlgorithm.HS512))...