Results 128 comments of winterland

Yes, basically it's a polling mechanism, my time is very limiting on this job now, so i'm writing the es client in go using [elastic v3](https://github.com/olivere/elastic) instead and talk to...

done in #119 , please review : )

OK, I'll send one. please reopen to track this. BTW, what's the purpose of this rewrite rule? ``` {-# RULES "foldCase/ByteString" foldCase = foldCaseBS #-} ```

What if we implemented `CI` using a type family? then we can keep original `ByteString` slice and do a more efficient copy to `FoldedCase ByteString`. I think this is the...

Another approach is to provide a `Data.CaseInsensitive.ByteString` module which exports a specialized `CIByteString` type using `ShortByteString` internally. So with providing `ShortByteString` instance we have three options here.

I came across the exactly problem as yours, here 's my solution: ``` haskell import Text.Digestive.Types import Text.Digestive.View ... lform

@jaspervdj Do you think we should add some APIs to poke around view?

As soon as I looked into the test i found the problem: `Char8` module is intended to deal with ascii char only, and the test rely on the fact that...

Ah, that code is copied from attoparsec and when write other benchmarks I just use comparison for simplicity, it is indeed an unfair bench, could you send me a patch...

OK, I'll fix it