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
https://lastcallmedia.com/blog/introducing-mannequin?utm_source=drupal-newsletter&utm_medium=email&utm_campaign=drupal-newsletter-20171012 |
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
https://www.lullabot.com/articles/incredible-decoupled-performance-with-subrequests?utm_source=drupal-newsletter&utm_medium=email&utm_campaign=drupal-newsletter-20171019 |
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
https://www.google.com/url?q=https%3A%2F%2Fdropsolid.com%2Fen%2Fblog%2Fload-testing-drupal-blazemeter-and-jmeter%3Futm_source%3Ddrupal-newsletter%26utm_medium%3Demail%26utm_campaign%3Ddrupal-newsletter-20171026&sa=D&sntz=1&usg=AFQjCNHemeHaWDV2yIPhOIQw4sDkls7olQ |
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
https://github.com/perftools/xhgui | |
https://github.com/tideways/php-profiler-extension | |
https://drupal.stackexchange.com/questions/118990/how-do-i-improve-the-performance-of-my-drupal7-site | |
Use XHGUI and tideways to have number of function calls | |
Webprofiler has timeline which has the flow of page request and time calculations. | |
To start debugging for performance start from the index.php before function call and after function call. | |
Because of that you can get the exact execution time. | |
You can get the response time in apache server also. There is a possibility the respsonse time would be less but to download the content it might take more time. | |
Do enable caching at techonolgy specific. Do at PHP level (APC), Mysql Level(Query caching), Memcache, Apache, JS, CSS, Sprite Images, Leverage requests, Check in google page speed. |
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
Doxygen Installation | |
Step1: | |
Install doxygen in ubuntu (https://www.tutorialspoint.com/articles/how-to-install-doxygen-on-ubuntu) | |
Step2: | |
Generate the sample conf file doxygen -g sample_text.conf |
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
return $this->flood->isAllowed('mobile_number_verification', $this::VERIFY_ATTEMPTS_COUNT, $this::VERIFY_ATTEMPTS_INTERVAL, $this->getCallableNumber($mobile_number)); |