Sergey Prokhorov
Sergey Prokhorov
Hi, I don't think `epgsql` makes any decisions, it just takes what you give it, encodes and sends to PostgreSQL, then decodes what it gets back. Can you please provide...
First of all you may just increase the `nf_conntrack` limit with smth like ``` sudo sysctl net.netfilter.nf_conntrack_max=128000 ``` You may also limit the overall outgoing throughput of your network interface...
It looks like there is some kind of memory leak. This is how my RAM consumption graph over 24h looks 
Do you expect A to be killed in case of timeout? FYI, [pooler](https://github.com/seth/pooler#using-pooler)'s `return_member/3` have 3rd argument indicating if worker should be returned to pool or killed and replaced. But...
I would say, it needs to be backwards-compatible
It's fine. Another approach would be to just convert proplist to map and use map after that, like it was done in epgsql: https://github.com/epgsql/epgsql/blob/5304480f24789d370fb637dcc649d12688f525ff/src/epgsql.erl#L155 https://github.com/epgsql/epgsql/blob/5304480f24789d370fb637dcc649d12688f525ff/src/epgsql.erl#L455-L459 But I'm ok with your...
@emiapwil hi, and thanks I tried your suggested keybinding, but it uses UP and DOWN keyboard arrows, but I was talking about mouse whell (or touchpad) SCROLL-UP and SCROLL-DOWN. So...
@richcarl I have gettext rule evaluator implemented there https://github.com/seriyps/gettexter/tree/master/src (see gettexter_plural.erl, gettexter_plural_parser.yrl, gettexter_plural_scanner.xrl). Rule may be evaluated by `erl_eval` or compiled to `.beam`.
I think, it may be optional, by setting flags in gettext_server's process dictionary like ``` erlang key2str(Server, Key, Lang) -> case proplists:get_value(public_table, erlang:process_info(Server, dictionary)) of undefined -> gen_server:call(Server, ...); Tid...
Очень странно. Scrapy же по-умолчанию использует `lxml` библиотеку (см. https://github.com/scrapy/scrapy/blob/master/scrapy/selector/__init__.py). Эта библиотека в бенчмарке уже присутствует. Если хочется померить оверхед от обёртки над `lxml`, то гораздо проще сделать что-то вроде...