#memcached — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #memcached, aggregated by home.social.
-
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache.
What is Memcached?
Memcached is a high-performance, distributed memory caching system ...
Continued 👉 #selfhosting #opensource #selfhosted
Memcached vs Redis Cache: Ulti... -
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache.
What is Memcached?
Memcached is a high-performance, distributed memory caching system ...
Continued 👉 #selfhosting #opensource #selfhosted
Memcached vs Redis Cache: Ulti... -
Advanced #Performance Tuning for #WHM
This article provides a guide to advanced performance tuning for WHM.
A Strategic Optimization Guide for IT Decision-Makers
Executive Summary
Performance tuning for WHM (Web Host Manager) is no longer optional for organizations operating modern hosting environments. As digital infrastructure grows increasingly complex, IT leaders must ensure that servers ...
Continued 👉 https://blog.radwebhosting.com/advanced-performance-tuning-for-whm/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #serverperformance #percona #mariadb #mysqltuner #memcached -
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache.
What is Memcached?
Memcached is a high-performance, distributed memory caching system designed to speed up dynamic web applications by reducing the database load.
🔍 Key FeaturesIn-memory storage: Stores data in RAM, making it extremely fast.
Key-value ...
Continued 👉 https://blog.radwebhosting.com/memcached-vs-redis-cache/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #selfhosted #opensource #selfhosting -
cPanel Shared Hosting Server Specs This article provides an in-depth analysis of our #cPanel Shared Hosting server specs and features powering the 100%-SSD cPanel Hosting services.
cPanel Shared Hosting Server Specs
The following features are included with ...
Continued 👉 https://blog.radwebhosting.com/cpanel-shared-hosting-server-specs/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #memcached #cardav #imap #imagemagick #malwarescanner #cloudsitebuilder #mailman #csf #firewall #cloudlinux #malwareremoval #cagefs #gitversioncontrol #ddosprotection #caldav #lscache #imunify360 -
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache.
What is Memcached?
Memcached is a high-performance, distributed memory caching ...
Continued 👉 #selfhosting #selfhosted #opensource
Memcached vs Redis Cache: Ulti... -
cPanel Shared Hosting Server Specs This article provides an in-depth analysis of our #cPanel Shared Hosting server specs and features powering the 100%-SSD cPanel Hosting services.
cPanel Shared Hosting Server Specs
The following features are included with ...
Continued 👉 https://blog.radwebhosting.com/cpanel-shared-hosting-server-specs/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #malwareremoval #ddosprotection #imap #malwarescanner #cagefs #gitversioncontrol #cloudsitebuilder #memcached #imunify360 #mailman #cloudlinux #cardav #imagemagick #csf #firewall #caldav #lscache -
Advanced #Performance Tuning for #WHM
This article provides a guide to advanced performance tuning for WHM.
A Strategic Optimization Guide for IT Decision-Makers
Executive Summary
Performance tuning for WHM (Web Host Manager) is no longer optional for organizations operating modern hosting environments. As digital infrastructure grows increasingly complex, IT leaders must ensure that servers ...
Continued 👉 https://blog.radwebhosting.com/advanced-performance-tuning-for-whm/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #percona #memcached #mysqltuner #serverperformance #mariadb -
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache.
What is Memcached?
Memcached is a high-performance, distributed memory caching system designed to speed up dynamic web applications by reducing the database load.
🔍 Key FeaturesIn-memory storage: Stores data in RAM, making it extremely fast.
Key-value ...
Continued 👉 https://blog.radwebhosting.com/memcached-vs-redis-cache/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #opensource #selfhosting #selfhosted -
Advanced #Performance Tuning for #WHM
This article provides a guide to advanced performance tuning for WHM.
A Strategic Optimization Guide for IT Decision-Makers
Executive Summary
Performance tuning for WHM (Web Host Manager) is no longer optional for organizations operating modern hosting environments. As digital infrastructure grows increasingly complex, IT leaders must ensure that servers ...
Continued 👉 https://blog.radwebhosting.com/advanced-performance-tuning-for-whm/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #memcached #percona #serverperformance #mysqltuner #mariadb -
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache.
What is Memcached?
Memcached is a high-performance, distributed memory caching ...
Continued 👉 #selfhosting #selfhosted #opensource
Memcached vs Redis Cache: Ulti... -
Кэширование в Symfony: мы сломали авторизацию и исправили это с помощью Lock
Мы добавили кэширование, чтобы ускорить работу бэкэнда. Затем кэширование нарушило авторизацию. Поначалу ситуация казалась безобидной. Сервису Symfony требовался JWT-токен для взаимодействия с внешним API. Запрос нового токена перед каждым вызовом был неэффективным, поэтому мы сохранили его в кэше и использовали повторно. При нормальной нагрузке все работало. При нагрузочном тестировании токен истекал, и несколько запросов одновременно проходили через один и тот же поток. Каждый из них видел пустой кэш и запрашивал у внешнего API новый JWT. Внешний API аннулировал предыдущий токен каждый раз, когда выдавал новый. После этого часть приложения начала работать с уже недействительными токенами. Решение заключалось не только в использовании общего Memcached, ведь проблема была не в хранилище, а в праве на обновление общего состояния. В статье история о том, как мы с командой обнаружили состояние гонки, что изменил Kubernetes в этой проблеме и почему Symfony Lock с повторной проверкой кэша стал недостающей частью архитектуры.
https://habr.com/ru/articles/1061794/
#php #symfony #программирование #caching #memcached #кэширование #авторизация #бэкенд
-
cPanel Shared Hosting Server Specs This article provides an in-depth analysis of our #cPanel Shared Hosting server specs and features powering the 100%-SSD cPanel Hosting services.
cPanel Shared Hosting Server Specs
The following features are included with ...
Continued 👉 https://blog.radwebhosting.com/cpanel-shared-hosting-server-specs/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #memcached #cardav #imagemagick #ddosprotection #lscache #imap #firewall #malwareremoval #imunify360 #caldav #cloudsitebuilder #gitversioncontrol #cloudlinux #cagefs #malwarescanner #csf #mailman -
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache.
What is Memcached?
Memcached is a high-performance, distributed memory caching ...
Continued 👉 #opensource #selfhosting #selfhosted
Memcached vs Redis Cache: Ulti... -
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache.
What is Memcached?
Memcached is a high-performance, distributed memory caching system designed to speed up dynamic web applications by reducing the database load.
🔍 Key FeaturesIn-memory storage: Stores data in RAM, making it extremely fast.
Key-value ...
Continued 👉 https://blog.radwebhosting.com/memcached-vs-redis-cache/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #opensource #selfhosted #selfhosting -
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache.
What is Memcached?
Memcached is a high-performance, distributed memory caching ...
Continued 👉 #selfhosted #opensource #selfhosting
Memcached vs Redis Cache: Ulti... -
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache.
What is Memcached?
Memcached is a high-performance, distributed memory caching system designed to speed up dynamic web applications by reducing the database load.
🔍 Key FeaturesIn-memory storage: Stores data in RAM, making it extremely fast.
Key-value ...
Continued 👉 https://blog.radwebhosting.com/memcached-vs-redis-cache/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #selfhosted #selfhosting #opensource -
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache.
What is Memcached?
Memcached is a high-performance, distributed memory caching system designed to speed up dynamic web applications by reducing the database load.
🔍 Key FeaturesIn-memory storage: Stores data in RAM, making it extremely fast.
Key-value ...
Continued 👉 https://blog.radwebhosting.com/memcached-vs-redis-cache/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #selfhosted #selfhosting #opensource -
🚀 Wow, what a revelation! In a groundbreaking discovery, #sysadmins everywhere finally realize that #Memcached still exists! 🙄 Meanwhile, #Redis sits in the corner, wondering why it's being compared to a dinosaur from 2003. 🤖 #StopTheRedisHate
https://jchri.st/blog/in-praise-of-memcached/ #TechNews #GroundbreakingDiscovery #HackerNews #ngated -
Кэширование в Symfony: как мы сломали авторизацию и починили ее через Lock
Привет, Хабр! На связи команда «Исходного Кода». Когда бэкенд на Symfony начинает тормозить, одним из первых инструментов оптимизации почти всегда становится кэширование. И это логично: правильно настроенный кэш круто снижает нагрузку на базу данных, режет latency API и убирает лишние ресурсоемкие операции внутри приложения. Но на практике мы редко ограничиваемся простым cache->get() и базовым TTL, особенно когда приложение крутится не на одном сервере, а в Kubernetes-кластере с пачкой внешних API и жесткой конкуренцией запросов. В таких условиях кэш - это уже не только про скорость, но и про синхронизацию состояния между процессами и pod'ами.
https://habr.com/ru/articles/1040522/
#Symfony_Lock #Symfony_Cache #JWT_кэширование #race_condition #distributed_lock #Memcached #401_Unauthorized #doublecheck
-
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache. What is Memcached? Memcached is a high-performance, distributed memory caching ... Continued 👉 #selfhosted #opensource #selfhosting
Memcached vs Redis Cache: Ulti... -
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache. What is Memcached? Memcached is a high-performance, distributed memory caching ... Continued 👉 #selfhosting #opensource #selfhosted
-
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache. What is Memcached? Memcached is a high-performance, distributed memory caching ... Continued 👉 #selfhosted #opensource #selfhosting
-
Memcached vs #Redis Cache: Ultimate Comparison of 2 Most Used In-Memory Data Stores This article provides a detailed comparison of #Memcached vs Redis cache. What is Memcached? Memcached is a high-performance, distributed memory caching ... Continued 👉 #opensource #selfhosted #selfhosting
-
Нагрузочное тестирование с нуля: наши грабли, гонка за токеном и рабочий чек-лист
Привет, хабровчане! Мы команда «Исходного кода» и уже полгода системно занимаемся нагрузочным тестированием (НТ). Раньше такие проверки были от случая к случаю - оттуда и взяли базу знаний. Сегодня хотим поделиться историей одного показательного фейла, который заставил нас пересмотреть весь подход и прийти к системе, которая показала себя, как работающая. Все мы знаем эту боль: фича идеально работает на деве и предпроде, проходит все тесты, а когда под реальной нагрузкой на нее заходят сотни пользователей одновременно - все начинает тормозить, сыпать ошибками или просто падать. Чтобы этого избежать, мы решили, что НТ должно стать обязательным этапом для всех фичевых задач, которые серьезно меняют логику, затрагивают запросы к серверу, кэширование или обработку данных. Главный толчок был простой и жизненный: уже на стадии рассмотрения сервиса мы понимаем, какая нагрузка на него ляжет, поэтому мы выводили правило: «Сервис должен стабильно держать N запросов в секунду», и мы берем эту планку и начинаем работу.
https://habr.com/ru/articles/1013866/
#нагрузочное_тестирование #race_condition #кэширование_данных #memcached #оптимизация_производительности #чеклист_нагрузочного_тестирования #кейс_нагрузочного_тестирования #гонка_процессов #метрики #анализ_работы_web_сервисов
-
🚀 After careful consideration, we’ve removed the php-memcache module from Webinoly starting with PHP 8.5.
It’s still available in earlier versions, but as legacy software, php-memcached is the way forward for new projects.
-
Show HN: I got tired of managing dev environments, so I built ServBay
https://www.servbay.com
#ycombinator #PHP #MySQL #MariaDB #PostgreSQL #Redis #Web_Server #NGINX #Caddy #Apache #Nodejs #Memcached #Python #Web_development -
Eventually tagging cache will have to come back to #Laravel sooner or later.
What about trying to re-implement it in time for Laravel 13? That would mean to depend on Symfony Cache.
https://symfony.com/doc/current/cache.html#cache-using-cache-tags
#PHP #Programming #Cache #Redis #Memcache #Memcached #Valkey #Dragonfly #KeyDB #SQLlite #Coding #Code #Symfony