This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ref: https://experienceleague.adobe.com/docs/commerce-operations/performance-best-practices/software.html | |
1/ PHP (php.ini) | |
memory_limit=1G | |
- Realpath_cache configuration | |
realpath_cache_size=10M | |
realpath_cache_ttl=7200 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1/ Building PHP Extension with Rust for Fun and Profit | |
https://ahmadrosid.com/blog/create-php-extension-with-rust | |
2/ A C++ library for developing PHP extensions | |
https://www.php-cpp.com/ | |
3/ Getting Started with PHP Extension Development via PHP-CPP | |
https://www.sitepoint.com/getting-started-php-extension-development-via-php-cpp/ | |
4/ PHPER (PHP Enjoy Rust) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1/ REST API Server with c++ | |
https://yairgadelov.me/rest-api-server-with-c-/ | |
https://github.com/yairgd/rest_server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1/ Buffalo - Bringing the productivity of Rails to Go! | |
https://gobuffalo.io/documentation/getting_started/installation/ | |
2/ Revel - High-productivity web framework for the Go language. | |
Github: https://github.com/revel/revel | |
Examples: https://revel.github.io/examples/booking.html | |
3/ Gin - Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin.Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin. | |
Github: https://github.com/gin-gonic/gin |