Dnyan
Coder
Doing a development on windows using XAMPP with default install on windows can give you a nightmares due to its dead slow speed of processing.
I too had same issue of slow processing speed on XAMPP.
I too did a lot of googling for solution to increase the speed.
At most of the places its showed that in etc conf file uncommenting the routing of 127.0.0.1 to local host solved the problem of many.
Increasing memory pool of innon db to 1G also made little improvement to many.
Personally i haven't seen any such improvements and also tried lot of changes like this.
Once i was just looking at my httpd-xampp.conf file and what i found is really a game changer.
At server name i found localhost 80
and i was always using 127.0.0.1/ to browse the files
so i changed localhost to 127.0.0.1, saved the changes and restarted the XAMPP.
Trust me, now i am getting a super lighting fast speed.
If you browse through localhost for your development in url, do ensure your httpd.conf file to have same server name.
i use 127.0.0.1, so i changed it to that in server name.
This is what i understood, if you want system to resolve name and redirect you to data, it gonna take time to find hit.
If you hit the same url address as you put into httpd-xampp.conf file, it directly gets connected and gives you super-fast results.
I too had same issue of slow processing speed on XAMPP.
I too did a lot of googling for solution to increase the speed.
At most of the places its showed that in etc conf file uncommenting the routing of 127.0.0.1 to local host solved the problem of many.
Increasing memory pool of innon db to 1G also made little improvement to many.
Personally i haven't seen any such improvements and also tried lot of changes like this.
Once i was just looking at my httpd-xampp.conf file and what i found is really a game changer.
At server name i found localhost 80
and i was always using 127.0.0.1/ to browse the files
so i changed localhost to 127.0.0.1, saved the changes and restarted the XAMPP.
Trust me, now i am getting a super lighting fast speed.
If you browse through localhost for your development in url, do ensure your httpd.conf file to have same server name.
i use 127.0.0.1, so i changed it to that in server name.
This is what i understood, if you want system to resolve name and redirect you to data, it gonna take time to find hit.
If you hit the same url address as you put into httpd-xampp.conf file, it directly gets connected and gives you super-fast results.