-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question. #32
Comments
Hi @osevan, Thank for you reporting an issue and helping improve Kaltura! To get the fastest response time, and help the maintainers review and test your reported issues or suggestions, please ensure that your issue includes the following (please comment with more info if you have not included all this info in your original issue):
and paste the output.
For general troubleshooting see: If you only have a general question rather than a bug report, please close this issue and post at: Thank you in advance, |
The |
Thank you very much. |
Why this? add daemon off and master_process off to nginx.conf Any benefits for profiling? |
If you don't add these directives, nginx will run with multiple processes (master + workers) and these processes will most likely also run as different users (workers by default run as |
Thank you very much. I want share with you nginx speedup with glibc alternative like Newlib and IP stack alternative lwip and malloc alternative mimalloc. When you find a way compiling nginx with lwip and Newlib outside of micro kernel, you could inform me. |
I wouldn't expect a significant boost with an alternative malloc, since nginx's pool implementation already groups the memory allocations into chunks. Nginx doesn't call malloc on every small string it needs to allocate - it allocates whole pages that are released only when the HTTP request is closed. |
Give a try in your lab and figure out how we can compile outside microkernel |
delete all object files - find objs/ -type f -name '*.o' -delete
make install
Are you forget here make before make install - remember you need to compile second time after compiling with fprofile-generate.
Hope you can update me
The text was updated successfully, but these errors were encountered: