horpto

Results 24 comments of horpto

@1st1 hello, could you please review or call someone else who can review

Wouldn't it be workaround to enable SO_REUSEPORT option in gunicorn? As it mentioned on [libuv](https://github.com/libuv/libuv/issues/1111). After this I got only such syscalls: ``` epoll_wait(7, [], 64, 1000) = 0 fchmod(6,...

@qq413434162 yes, but programmer should turn it on clearly in config

Hi, do you use RedisBackend or CachedRedisBackend? Do you use something like gevent ? Which version of the python redis-py lib do you use? Also you can limit number of...

Well, great somebody except me uses caching. All calls to redis in CachingRedisBackend are occured under the lock so redis client should have only one connection. As `constance` object is...

You can try to use `CachingRedisBackend` via `CONSTANCE_BACKEND = 'constance.backends.redisd.CachingRedisBackend'`. See details in docs.

Thanks, I have exactly setuptools==60.7.1 I think something cythonized is not imported correctly and python version is not correct.

@arcivanov Originally, all was patched with `patch_all()` of course. Exactly 2 patches is required to reproduce issue. Something broken at least with `Greenlet.spawn` as it should be called on the...

Anyway setuptools has only one interesting commit: https://github.com/pypa/setuptools/pull/3070

@maciejp-ro setuptools with version 60.7.0 has another interesting PR: https://github.com/pypa/setuptools/pull/3061. it vendors some other libs. Problem is here with module more_itertools. [line](https://github.com/pypa/setuptools/blob/main/pkg_resources/_vendor/more_itertools/more.py#L5). `more_itertools` imports `concurrent.futures.threading` too fast. My [diff](https://gist.github.com/horpto/073dd5882ea2e99c15ba9c3c02536d57) confirmed...