Florian FuchsforHashnode Engineeringengineering.hashnode.com·Dec 7, 2023FeaturedHashnode's Feed ArchitectureWe previously explained how we calculate the Hashnode Feed and select content and metadata for each user. We found that the feed now displays improved and personalized content. However, we did find two issues in the implementation: Performance: The ...Jaime Anguiano and 1 other are discussing this2 people are discussing thisDiscuss·87 likes·291 readsBuilding Personalized Feeds at HashnodeAWS
Florian FuchsforHashnode Engineeringengineering.hashnode.com·Dec 7, 2023FeaturedHashnode's Feed ArchitectureWe previously explained how we calculate the Hashnode Feed and select content and metadata for each user. We found that the feed now displays improved and personalized content. However, we did find two issues in the implementation: Performance: The ...Jaime Anguiano and 1 other are discussing this2 people are discussing thisDiscuss·87 likes·291 readsBuilding Personalized Feeds at HashnodeAWS
Dhairya Vermarajurastogi.hashnode.dev·Dec 8, 2023Gin: Middleware for API CachingIn a recent Gin server project, I wanted to incorporate API caching effortlessly. So, I decided to build a middleware for it, thinking it would be a breeze. But with Gin, things got a bit tricky. Let me walk you through this. Request Flow Middleware ...Discussgolang
Erik Guzmanblog.guzman.codes·Dec 1, 2023Avoid Trips To The Database With Nebulex - Phoenix SeriesRecently, I have been looking for ways to optimize my Stream Closed Captioner application. During one of my typical scroll-throughs of my Following lists and other sites, I discovered Nebulex. Nebulex, a local and distributed caching toolkit for Eli...Discuss·762 readsElixir, Phoenix SeriesElixir
youssef sheblyoussefshebl.hashnode.dev·Nov 29, 2023RedisGears and Write-behind caching strategywhat is RedisGears? RedisGears is a module to Redis but what is Redis module? Redis modules are dynamic libraries that can add new commands to Redis, so Redisgears is a module that add new commands to Redis. but this is very limited definition, redi...Discussredi
Mahesh Choudhurymahesh135.hashnode.dev·Nov 29, 2023The Need for Speed: Mastering Caching Techniques for Faster Applications. Part-2In part 1 of this series, I introduced caching, its importance, and strategies. That article can be found by clicking the link below. The Need for Speed: Mastering Caching Techniques for Faster Applications. Part-1 Cache invalidation strategies? Cach...DiscussBackend Engineering caching
raju ghoraicoderj001.hashnode.dev·Nov 27, 2023Mastering LRU Cache: A Comprehensive Guide to Enhancing Computing PerformanceCaching strategies are crucial in the world of computing, and one standout technique is the Least Recently Used (LRU) Cache. This algorithm is essential for enhancing system performance and striking a balance between efficiency and memory usage. In t...Discuss·35 readsProgramming Blogs
Flavio Wuenscheantelo.live·Nov 26, 2023React Query: cacheTime vs staleTimeIf you ran upon this thread, you're probably struggling with setting up a great caching strategy using React Query (very recently renamed to TanStack Query). In this short article, I'll try to clarify the most common sources of confusion around cache...Discuss·10 likes·70 readsreact-query
Mahesh Choudhurymahesh135.hashnode.dev·Nov 27, 2023The Need for Speed: Mastering Caching Techniques for Faster Applications. Part-1What is Caching? Caching is a strategy where commonly accessed data is stored in a readily accessible location for faster access. Why is it important? In the fast-paced world of computing, slow applications can frustrate users and impact user experi...DiscussBackend Engineering caching
Zell Liewzellwk.hashnode.dev·Nov 20, 2023Easy caching on the local file system with NodeToday I want to introduce you a utility that will make caching in the local file system extremely easy. This utility is called fileCache and it’s built into Splendid UI. npm install splendid-ui To use the utility, import fileCache from Splendid UI. ...Discussnode
Kirtan Chandakkirtanchandak.hashnode.dev·Nov 19, 2023How to Prevent Image Caching in React.js and Next.jsSeveral times when we are building an application we need to add user images such as profile pictures, thumbnails or any other image use-case. Here, in many cases when we replace an image with the same name, the browser still picks up the old one. Bu...Discusscaching