donghj2000
donghj2000
I see, thanks for your reply. I wanted to do the IOCP version precisely because I saw that the official version made this a legacy issue. But I failed, and...
WSL2 is indeed a good solution. The main limitations are the poor performance of select() and poll() comparing with linux epoll and not surpporting multi workers, and I have resolved...
Because rsa is CPU-intensive, you have to schedule the rsa computing to different time periods.
For example, in the worst case, all certificates expire at the same time. Assuming that they are automatically renewed 30 days before expiration, and set the renew interval as 1...
I guess you use lua-resty-auto-ssl, I have read its souce code, and found that it renew all certs at one time as I suspected.
Use quill directly in react. 2025 Note You probably don't need this library to use Quill with React. See https://quilljs.com/playground/react
If you insist on using this lib in react 19, you can replace findDOMNode by some other workaround: before: ReactQuill.prototype.getEditingArea = function () { if (!this.editingArea) { throw new Error('Instantiating...