JINNOUCHI Yasushi

Results 136 comments of JINNOUCHI Yasushi

Google will release [Cloud Memorystore][] that is full-managed Redis ([announce][]). [Cloud Memorystore]: https://cloud.google.com/memorystore/ [announce]: https://cloudplatform.googleblog.com/2018/04/Accelerating-innovation-for-cloud-native-managed-databases.html I think it can solve one of the problems.

FYI: plugins using denops.vim can be found here. * https://github.com/topics/vim-denops * https://github.com/topics/denops

@wbthomason Thank you for reviewing. Usually, denops.vim automatically discovers other plugins using denops and load them. https://github.com/vim-denops/denops.vim/blob/4e694e1ebd868e7448e7f6f82e844c88719f0756/plugin/denops.vim#L22-L22 But this func (`denops#plugin#discover()`) is called only once in loading denops.vim itself. So...

Hmm... `nb` needs to support bash

I've been working on improving completion on fish (#63). I will implement this feature on that PR (for fish only).

For performance issue, we should use bash parameter expansion for replacing `[` `*` in patterns, maybe. ```sh escaped="${__basename:-}" escaped=${escaped//\[/\\[} escaped=${escaped//\*/\\*} # now escaped completely ``` But this seems redundant for...

@sid-code In addition to that, you can `init()`ing on the “warmup request”. GAE does the requests whenever instances start. [Configuring Warmup Requests to Improve Performance  |  App Engine standard environment...

`r.WithContext()` creates a `new(Request)` and copies the original. But appengine's Context is managed by `ctxs.m` ([here][]) the `map[*http.Request]*Context`, so the newly created `Request` does not exist in this map. This...

I think one of the reasons is for concurrent goroutine procedures. If it overwrites the existent `*Request`, the change affects other goroutines unintentionally.