Amr ElhewyforHewi's Bloghewi.hashnode.net·Jun 28, 2022Distributed Systems Hands On - Deploying a sharded memcache using KubernetesHello everyone in this article I'm going to be talking about caches in distributed systems and doing a hands on deploying a sharded memcache across multiple nodes in a Kubernetes cluster. Before we get started if you wish to code along you'll need to...Discuss·11 likes·1.2K readsKubernetes
Tanmoy SarkarforTanmoy Sarkartanmoysarkar.hashnode.net·Feb 2, 2023Redis VS Memcached for cacheRedis : Redis is an open-source, in-memory data structure store, used as a database, cache, and message broker. Memcached: Memcached is a distributed, high-performance, in-memory caching system. It is used to temporarily store and serve frequently re...Discuss·10 likes·63 readswebdev
Pavel BukhmatovforShark in ITsharkinit.hashnode.net·Jul 18, 2022Paper review: Scaling Memcache at FacebookOverview Memcached is a general-purpose in-memory key-value store. While most users can benefit from the generic caching capabilities of Memcached, some companies, e.g. Facebook (now: Meta), need to push it to the limit. This is a paper review of "Sc...Discuss·71 readsmemcached
Avash MitraforAvash's Technical Contentavash.hashnode.net·Apr 6, 2023Memcached at Scale: How Meta Scaled and Optimized for Massive Request VolumesMeta, one of the world's largest social media platforms, handles billions of requests per second and stores trillions of key-value pairs. To manage this scale, Meta uses Memcached, a simple Key-Value cache that stores data in memory. Since users cons...Discussmemcached
Tanmoy SarkarforTanmoy Sarkartanmoysarkar.hashnode.net·Feb 2, 2023Redis VS Memcached for cacheRedis : Redis is an open-source, in-memory data structure store, used as a database, cache, and message broker. Memcached: Memcached is a distributed, high-performance, in-memory caching system. It is used to temporarily store and serve frequently re...Discuss·10 likes·63 readswebdev
Thirumurthi Sforthirumurthithirumurthi.hashnode.net·Aug 9, 2022Web Scraping using Python with memcache deployed in Oracle CloudIn this blog will demonstrate web scraping using Python. Also used memcache to cache specific data for a duration of 1 day. I used Oracle Cloud to deploy the application and the instance is accessible from internet. This steps can be done in the loca...Discuss·184 readsPython
Pavel BukhmatovforShark in ITsharkinit.hashnode.net·Jul 18, 2022Paper review: Scaling Memcache at FacebookOverview Memcached is a general-purpose in-memory key-value store. While most users can benefit from the generic caching capabilities of Memcached, some companies, e.g. Facebook (now: Meta), need to push it to the limit. This is a paper review of "Sc...Discuss·71 readsmemcached
Amr ElhewyforHewi's Bloghewi.hashnode.net·Jun 28, 2022Distributed Systems Hands On - Deploying a sharded memcache using KubernetesHello everyone in this article I'm going to be talking about caches in distributed systems and doing a hands on deploying a sharded memcache across multiple nodes in a Kubernetes cluster. Before we get started if you wish to code along you'll need to...Discuss·11 likes·1.2K readsKubernetes
Jose Diazforblog.jjdiaz.devjjdiaz.hashnode.net·Jun 15, 2022Boosting Performance with Caching in LaravelCaching is a technique that is used to store data in a temporary location in order to reduce the number of expensive operations, such as database queries, that an API needs to perform. By implementing caching in your API, you can significantly improv...Discuss·40 readsMaximizing the scalability of your Laravel API: Best Practices and Techniquescaching