Saswat Samalsaswatblogs.hashnode.dev·Oct 23, 2023🚀🗄️ DevOps 3.2: Crafting DB, Cache, and Queue Setup 💾🔗Services: Nginx ===> Web Service Tomcat ===> Application Server RabbitMQ ===> Broker/Queuing Agent Memcache ===> DB caching MySQL ===> SQL Databases Setup Order: MySQL Memcache RabbitMQ Tomcat Nginx Steps: Log in to the database servic...Discuss·5 likes🚀 DEVOPS 3.0: Building Your Project 🏗️Devops
Abdulrasaq Noibiolixpin.hashnode.dev·Oct 1, 2023Setting up a Local Multi-Tier Java Web Application Manually: A Beginner's GuideIntroduction Are you an aspiring DevOps engineer looking to sharpen your skills and dive into a hands-on project? If so, you're in the right place. In this article, we'll walk you through the process of setting up a local multi-tier Java web applicat...Discuss·4 likes·87 readsnginx
Damasukma TrihanandiforDama's Blogblog.dama.zip·Aug 6, 202307 - Setup MemcachedThis post is part of the Manual Deployment Openstack HA and Ceph series. Memcached is typically used by high-speed components like Keystone (Identity Service) and Nova (Compute Service) in OpenStack to store frequently accessed temporary data, such a...DiscussManual Deployment Openstack HA and Cephopenstack
Ritesh Kumar Nayakwww.devopswithritesh.in·May 25, 2023A multi-tier Web Application DeploymentProject Overview In this project, we'll be hosting a web application which is a social site developed by developers, and the application is based on Java. The user can access the application using an IP address from his/her browser(as we are setting ...Discuss·1 like·71 readsDevops
Avash Mitrablogs.avash.in·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...Discuss·64 readsmemcached
Tanmoy Sarkartanmoy.online·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·166 readswebdev
Thirumurthi Sthirumurthi.hashnode.dev·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·330 readsPython
Pavel Bukhmatovsharkinit.hashnode.dev·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·157 readsmemcached
Amr Elhewyhewi.blog·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.4K readsKubernetes
Jose Diazblog.jjdiaz.dev·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·111 readsMaximizing the scalability of your Laravel API: Best Practices and Techniquescaching