<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Redis on foojay.io - Friends Of OpenJDK</title><link>http://foojayio.github.io/website/sponsor/redis/</link><description>Articles from Redis on foojay.io - Friends Of OpenJDK</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Thu, 07 Aug 2025 06:58:07 +0000</lastBuildDate><atom:link href="http://foojayio.github.io/website/sponsor/redis/index.xml" rel="self" type="application/rss+xml"/><item><title>Semantic Caching with SpringBoot &amp; Redis</title><link>http://foojayio.github.io/website/today/semantic-caching-with-springboot-redis/</link><pubDate>Thu, 07 Aug 2025 06:58:07 +0000</pubDate><category>AI</category><category>Java</category><category>nosql</category><category>Redis</category><category>Tutorials</category><guid>http://foojayio.github.io/website/today/semantic-caching-with-springboot-redis/</guid><description>Build semantic caching with Spring AI &amp; Redis to cut LLM costs 80%. Cache by meaning, not exact text. Full tutorial with working demo.</description></item><item><title>Agent Memory with Spring AI &amp; Redis</title><link>http://foojayio.github.io/website/today/agent-memory-with-spring-ai-redis/</link><pubDate>Wed, 23 Jul 2025 16:34:04 +0000</pubDate><category>Redis</category><category>Spring</category><category>Tutorials</category><category>Use Cases</category><guid>http://foojayio.github.io/website/today/agent-memory-with-spring-ai-redis/</guid><description>Learn how to build a memory-enabled AI agent using Spring Boot, Spring AI, and Redis. Store and recall user preferences and conversation history for personalized, context-aware responses.</description></item><item><title>How I Improved Zero-Shot Classification in Deep Java Library (DJL) OSS: Enhancing Machine Learning Model Translators</title><link>http://foojayio.github.io/website/today/how-i-improved-zero-shot-classification-in-deep-java-library-djl-oss/</link><pubDate>Wed, 09 Jul 2025 10:51:16 +0000</pubDate><category>Java</category><category>Machine Learning</category><guid>http://foojayio.github.io/website/today/how-i-improved-zero-shot-classification-in-deep-java-library-djl-oss/</guid><description>Learn how I improved zero-shot classification in Deep Java Library (DJL) by fixing token_type_ids support, optimizing logit handling, and aligning it with Hugging Face Transformers for accurate Java…</description></item><item><title>How to send prompts in bulk with Spring AI and Virtual Threads</title><link>http://foojayio.github.io/website/today/how-to-send-prompts-in-bulk-with-spring-ai-and-java-virtual-threads/</link><pubDate>Wed, 21 May 2025 09:18:45 +0000</pubDate><category>Java</category><category>JDK21</category><category>Spring</category><category>Tutorials</category><guid>http://foojayio.github.io/website/today/how-to-send-prompts-in-bulk-with-spring-ai-and-java-virtual-threads/</guid><description>Learn how to use Spring AI and Java Virtual Threads to send hundreds of prompts to OpenAI in parallel.</description></item><item><title>Semantic Search with Spring Boot &amp; Redis</title><link>http://foojayio.github.io/website/today/semantic-search-with-spring-boot-redis/</link><pubDate>Mon, 05 May 2025 15:35:55 +0000</pubDate><category>Databases</category><category>Java</category><category>Redis</category><category>Tools</category><category>Use Cases</category><guid>http://foojayio.github.io/website/today/semantic-search-with-spring-boot-redis/</guid><description>Learn how to build a semantic search app with Spring Boot and Redis. Discover how Redis OM Spring makes it easy to find results based on meaning, not just keywords.</description></item><item><title>Redis is now available under the AGPLv3 open source license</title><link>http://foojayio.github.io/website/today/redis-is-now-available-under-the-agplv3-open-source-license/</link><pubDate>Fri, 02 May 2025 12:15:59 +0000</pubDate><category>Redis</category><guid>http://foojayio.github.io/website/today/redis-is-now-available-under-the-agplv3-open-source-license/</guid><description>Redis 8 with its new capabilities and with AGPL licensing demonstrates our ongoing commitment to making a platform developers love.</description></item><item><title>Sliding Window Counter Rate Limiter (Redis &amp; Java)</title><link>http://foojayio.github.io/website/today/sliding-window-counter-rate-limiter-redis-java/</link><pubDate>Tue, 25 Feb 2025 21:21:11 +0000</pubDate><category>Databases</category><category>Java</category><category>Redis</category><category>Tools</category><guid>http://foojayio.github.io/website/today/sliding-window-counter-rate-limiter-redis-java/</guid><description>Learn how to implement a Sliding Window Counter Rate Limiter using Redis and Java. Discover an efficient way to manage API request limits.</description></item><item><title>Sliding Window Log Rate Limiter (Redis &amp; Java)</title><link>http://foojayio.github.io/website/today/sliding-window-log-rate-limiter-redis-java/</link><pubDate>Tue, 04 Feb 2025 12:21:56 +0000</pubDate><category>Java</category><category>Java Beginner</category><category>nosql</category><category>Redis</category><category>Tutorials</category><guid>http://foojayio.github.io/website/today/sliding-window-log-rate-limiter-redis-java/</guid><description>Build a sliding window log rate limiter with Redis and Java. Track requests in a rolling window, expire old entries, and test your setup for smooth...</description></item><item><title>Token Bucket Rate Limiter (Redis &amp; Java) - Raphael De Lio</title><link>http://foojayio.github.io/website/today/token-bucket-rate-limiter-redis-java/</link><pubDate>Tue, 28 Jan 2025 07:07:08 +0000</pubDate><category>Databases</category><category>Java</category><category>Redis</category><guid>http://foojayio.github.io/website/today/token-bucket-rate-limiter-redis-java/</guid><description>Learn how to implement the Token Bucket rate-limiting algorithm using Redis and Java. Discover step-by-step guidance, testing with Redis TestContainers, and...</description></item><item><title>Fixed Window Counter Rate Limiter (Redis &amp; Java)</title><link>http://foojayio.github.io/website/today/fixed-window-counter-rate-limiter-redis-java/</link><pubDate>Mon, 20 Jan 2025 16:34:18 +0000</pubDate><category>Databases</category><category>Java</category><category>Java Beginner</category><guid>http://foojayio.github.io/website/today/fixed-window-counter-rate-limiter-redis-java/</guid><description>Learn how to implement a Fixed Window Rate Limiter with Redis and Java! This detailed guide covers everything from the basics of rate-limiting to Java implem...</description></item><item><title>Rate limiting with Redis: An essential guide</title><link>http://foojayio.github.io/website/today/rate-limiting-with-redis-an-essential-guide/</link><pubDate>Mon, 13 Jan 2025 18:23:26 +0000</pubDate><category>Databases</category><category>nosql</category><guid>http://foojayio.github.io/website/today/rate-limiting-with-redis-an-essential-guide/</guid><description>Discover the essentials of rate limiting with Redis. Learn about popular algorithms like Leaky Bucket, Token Bucket, and Sliding Window, and how to choose...</description></item></channel></rss>