Justin Li

Results 41 comments of Justin Li

An array of cluster nodes sounds perfect for the config. However, I think that being able to specify a subset and doing autodiscovery would be nice as well, maybe as...

Think you can coax a CoreOS designer into making one?

The kanji for chihaya is "thousand" and "fast" btw.

There are some cases where the dict can potentially be very large https://github.com/chihaya/chihaya/blob/e7f43ee924e4f6a9e71518355e72d8d85e1a26b4/frontend/http/writer.go#L75-L86 I agree that the best way would be to construct the dicts in order, to avoid creating...

I agree with @brendensoares, there are more important and useful things to be done before this.

Revel's router is trie-based, and very fast. https://github.com/robfig/pathtree

:-1: to YAML, it's an extremely complex format under the hood. Let's keep this as simple as possible. One option is to just use a Go DSL like the other...

[RFC5322 3.4.1](https://tools.ietf.org/html/rfc5322#section-3.4.1) is the official specification of an email address. We can either appropriate [net/mail](http://golang.org/pkg/net/mail/) which (somewhat) implements that spec, or use the [HTML5 definition](http://www.w3.org/TR/html5/forms.html#valid-e-mail-address) of a valid mail. The...

Maybe augment the WebKit regex to include `\p{L}`? (unicode characters in the letter category)