Inada Naoki

Results 343 comments of Inada Naoki

FYI: vim on Ubuntu 16.04 is +python3 https://bugs.launchpad.net/ubuntu/+source/vim-youcompleteme/+bug/1538532

@sybrenstuvel What API do you prefer? * `rsa.OAEP_encrypt`, `rsa.OAEP_decrypt`? * `rsa.encrypt_OAEP`, `rsa.decrypt_OAEP`? * `rsa.encrypt_pkcs1_v2`, `rsa.decrypt_pkcs1_v2`?

> I don't know, because for that I would have to know more about the intended audience, intended use cases, etc. OAEP is stronger than PKCS1_v1.5. When encrypting the same...

FWIW: http://uwsgi-docs.readthedocs.org/en/latest/articles/SerializingAccept.html

I think lock based approach is better than signaling based one. Arbiter doesn't know about which worker is busy and how many connection coming to socket.

Following is comparing flows accepting new connection. ## arbiter solution 1. _New connection coming_ 2. arbiter wake up from epoll 3. arbitor selects worker and send signal from pipe 4....

FWI, Linux 4.5 introduced EPOLLEXCLUSIVE. http://kernelnewbies.org/Linux_4.5#head-64f3b13b9026133a232a418a27ac029e21fff2ba

This project is dead. Use mysqlclient. It supports MySQL 8.0.

MySQLdb1 uses Python/C API. PyPy doesn't so good at Python/C API. I recommend you to use PyMySQL or MySQL Connector/Python.

Have you tried MySQLdb directly? It seems problem of Django.