The post Revealed :👨💼 What does websites like Facebook and YouTube process in the background ? | StudyObject appeared first on StudyObject.
]]>I always knew that heavy loaded sites like Facebook and YouTube does some kind of optimisation to make it as fast as possible for users. They use load balancing, content distribution network etc., we are not going to discuss these, you already know it !
Object caching can make your website supercharged! Let’s dive in into the real cool tech stuff. We will discuss how exactly you can work with object caching with persistent connections. Please note that by default object caching is not persistent in WordPress.
Some people can argue on selecting Object caching over Database caching. We will elaborate on the same and finally conclude on which is better and which one to use in your environment.
It is noteworthy that WordPress maintains object cache only for complex queries and not for all database queries during that single connection request. However WordPress will discard all of those objects at the end of the request.
WordPress Object caching is not persistent. So it requires the objects to be rebuilt from scratch for the next page load.
Database cache caches the results of common database queries to enhance performance and Object Cache caches the results of complex database queries to reduce server load.
So if you are looking to boost performance , you should use database caching as it will keep common queries loaded into cache. Let’s say most of your website visitors are content consumers. So it becomes preferable to use database caching.
Let’s say your visitors performs critical operations like buying or selling , then you should prefer Object Caching. With Object caching, a lot of the backend complex queries will be object cached . Hence it will save you from overloading the CPU. With Object Caching PHP execution time is improved while lessening the load on the database. It is particularly helpful in situations where much of the page is difficult to cache from the front-end, like for e-commerce applications.
For more queries you may refer here.
There are many ways to achieve persistent caching. The most preferred way is to use Memcached. If you want to know how memached can be installed on your server, give it a read at plex.
Please note you must have memcached daemon running on linux and PECL memcached extension installed in PHP.
Memcached daemon listens by default on tcp 11211 port
Output:
ps -eaf | grep memcachedmemcach+ 19649 1 0 Jun23 ? 00:02:18 /usr/bin/memcached -u memcached -p 11211 -m 64 -c 1024 -l 127.0.0.1,::1
Output:
tcp 0 0 127.0.0.1:11211 0.0.0.0:* LISTEN 19649/memcached
tcp6 0 0 ::1:11211 :::* LISTEN 19649/memcached
Also check if PHP contains the PECL memcahced extension
Output:
memcached support => enabled
Using Object Caching and Database Caching together may lead to higher utilisation of server resources. So it becomes vital to select either of them based on your requirement. It is always recommended to use Object Caching without DB caching or vice versa.
Which one of these you prefer? Share your thoughts!
Author: Rajnish K
About Author :
Rajnishk is R&D Expert ,passionate for Web Stack & an Entrepreneur . He can be reached at [email protected]
The post Revealed :👨💼 What does websites like Facebook and YouTube process in the background ? | StudyObject appeared first on StudyObject.
]]>