Skip to main content

Posts

Showing posts with the label Lumen

WP tuning p2 (API), Lumen, Laravel codepipeline Beanstalk

https://deliciousbrains.com/comparing-wordpress-rest-api-performance-admin-ajax-php/ https://stackoverflow.com/questions/3338220/how-to-simulate-high-traffic-load-on-a-web-application http://www.opensourcetesting.org/category/performance/page/2/ https://jmeter.apache.org/usermanual/get-started.html#non_gui curl -sH 'X-Papertrail-Token: YOUR-HTTP-API-KEY' https://papertrailapp.com/api/v1/archives.json |   grep -o '"filename":"[^"]*"' | egrep -o '[0-9-]+' |   awk '$0 >= "YYYY-MM-DD" && $0 < "YYYY-MM-DD" {     print "output " $0 ".tsv.gz"     print "url https://papertrailapp.com/api/v1/archives/" $0 "/download"   }' | curl --progress-bar -fLH 'X-Papertrail-Token: YOUR-HTTP-API-KEY' -K- https://help.papertrailapp.com/kb/how-it-works/permanent-log-archives/#usage-example https://medium.com/@avishayil/deploy-to-elastic-beanstalk-using-bitbuc...