I’m having issues with WordPress being too slow. I discovered it’s because of MySQL queries. They take sometimes 2 – 10s – way too long. I installed Query Monitor...
I have some experience with building wordpress pages but me and my friend are starting an e-shop, we wanted to have everything perfect without any bugs and problems so...
I have a table of students: id | age -------- 0 | 25 1 | 25 2 | 23 I want to query for all students, and an additional...
I’m thinking of using multiple web servers with a load balancer in a big WP install. The database will be on a separate server and that’s the easy part....
I know a few ways of how to check if a string contains only digits: RegEx, int.parse, tryparse, looping, etc. Can anyone tell me what the fastest way to...
I’m using CURL to get the status of a site, if it’s up/down or redirecting to another site. I want to get it as streamlined as possible, but it’s...
I’ve seen in various places, including the WordPress admin and on this page, that using string based identifiers is “strongly not recommended for performance reasons”. I understand that looking...
One of my WP sites is using a lot of CPU, and I am wondering if this is caused because of the high number of spam comments it is...
How do you improve your ASP.NET MVC application performance? 19 Answers 19
Lets say you have a: List<string> los = new List<string>(); In this crazy functional world we live in these days which one of these would be best for creating...