Skip to main content
Filter by
Sorted by
Tagged with
Best practices
0 votes
0 replies
20 views

We follow this article to write all our API calls https://medium.com/@luizzappa/nuxt-3-repository-pattern-organising-and-managing-your-calls-to-apis-with-typescript-acd563a4e046 so we can fetch a ...
td2thinh's user avatar
1 vote
0 answers
49 views

In a nestjs application we have just started implementing typeorm db layer cache as per docs here - https://orkhan.gitbook.io/typeorm/docs/docs/query-builder/6-caching this is the only instance where ...
Jayesh Vyavahare's user avatar
0 votes
0 answers
33 views

Redis has been recently facing a lot of timeout errors. We are currently using stackExchange.redis or managing Redis in the ASP.NET Core application. We have used async whenever possible with proper ...
Sachin Ram's user avatar
0 votes
0 answers
24 views

I have an Azure front door (afd) with a route and rule set to serve a SPA, as is quite normal, I don't want the index.html cached but do want all the other files cached. I created a rule-set and rules ...
APW's user avatar
  • 557
1 vote
1 answer
193 views

I have a bounded queue with small size that definitely fit in int. So I want to use atomic<int> instead of atomic<size_t> for indexing/counter, since int is smaller it should be faster. ...
Huy Le's user avatar
  • 1,979
0 votes
0 answers
30 views

Hey i was building a DeviceService to know Connected Devices to an account after i builded every thing now i got issue with revoking device Main Confusion : that i decided to use IMemoryCache to ...
Braa gamer's user avatar
-1 votes
0 answers
112 views

I'm experimenting with Next.js 16's new Cache Components and Partial Prerendering (PPR) to build a product page that: Serves a static shell instantly (HTML for layout, header, footer) Streams the ...
Mina Golzari Dalir's user avatar
0 votes
0 answers
45 views

I’m studying CPU cache design and I have a question about cache address breakdown when the cache size is not a power of two. According to the Intel 10th Gen Core processor datasheet [1], my MacBook ...
Hà Tường Nguyên's user avatar
4 votes
1 answer
105 views

I tried postgres unlogged table for using them as a cache to speed up queries and it works (50% query time got avoided). I can really recommend that to everyone. But I restarted the server (I mean the ...
Theores's user avatar
  • 75
0 votes
0 answers
33 views

I'm trying to build a docker image on my Mac, but it fails at installing some linux deps. I think it's all pretty standard, and it works for my colleagues, on CI/CD (details below) Relevant part: FROM ...
fodma1's user avatar
  • 3,545
0 votes
0 answers
49 views

Everything works fine, caching is active and responses are served from cache. However, when the response is served from cache (cache hit), the Out Flow (response flow) doesn’t execute at all — meaning ...
Kürşat Oltulu's user avatar
0 votes
2 answers
122 views

Problem After a deploy, a subset of users can’t load the app. For them, a specific old chunk URL (e.g. chunk-B3EQFA6E.js) returns index.html with Content-Type: text/html instead of JavaScript. That ...
Çlirim Murati's user avatar
0 votes
1 answer
85 views

I keep facing same error seeing logs of firebase crashlytics. .jsonDecode FormatException: Unexpected end of input (at character 1) ^. Error thrown . .jsonDecode (dart:convert) ...
Hyejung's user avatar
  • 1,314
0 votes
0 answers
15 views

I am currently using the Canary version of Next.js 15 to develop a project under the guidance of an instructor. I understand the general concept of using cacheTag to cache returned data. However, I am ...
Mohammed Tanvir's user avatar
1 vote
0 answers
53 views

Suppose the following example: library(xfun) cp <- tempdir() g <- function(x) x %% 2L for(x in 1:2) { i <- cache_rds(g(x), file = "my_cache.rds", dir = paste0(cp, "/"), ...
thothal's user avatar
  • 20.6k
0 votes
0 answers
27 views

I'm working on a project where I need to apply LFU on the the value for each key. Value is something x. Now while adding value for that key, I need to delete those which has been used very less. We ...
Rohit's user avatar
  • 1
1 vote
0 answers
25 views

I've configured a WMS with MapProxy and I am currently working on the caching configuration. The refresh_before option is explained in the documentation. As far as I understand, MapProxy only caches ...
TEC HIB's user avatar
  • 11
0 votes
1 answer
77 views

when i test my code with jmeter my average respond time on the bun with cache is higher that node.js that dont, i using 100 thread with period 1 second, but it seems the standard deviation is better ...
Mr F's user avatar
  • 1
0 votes
0 answers
66 views

I’m working on a Stencil web component inside a library that depends on other libraries maintained by my team. To get the latest versions of these components, I often need to delete node_modules and ...
João Vitor de Oliveira's user avatar
0 votes
0 answers
59 views

I’m protecting documentation behind a Cloudflare Worker that enforces a login. Route: docs.example.com/* → Worker Expectation: unauthenticated HTML navigations (/, *.html) should be redirected to /...
Taco's user avatar
  • 700
1 vote
0 answers
69 views

My application needs to fetch resources (images, CSS, fonts, etc.) from given URLs and cache them locally based on the Cache-Control/ETag headers returned with the resource. I’m using Apache ...
Teodor Mysko's user avatar
2 votes
1 answer
69 views

Body: I developed an IAM system using Spring Boot where I integrated multi-factor authentication (MFA). Here’s the flow I implemented: A client sends a GET request to /oauth2/authorize. This redirects ...
Heshan Sandaruwan's user avatar
0 votes
1 answer
75 views

My React app is served with Nginx inside Docker (with correct cache-control headers), but the outer server-level Nginx acting as a reverse proxy strips/overrides those headers, causing browsers to ...
jass's user avatar
  • 1
0 votes
0 answers
19 views

I want to implement the cache negotiation for the public folder in the root directory. I configured it as follows in nuxt.config.ts. However, after running pnpm dev and pnpm generate, and then npx ...
shunpeng gao's user avatar
0 votes
1 answer
233 views

I am struggling to properly invalidate the cache. import com.github.benmanes.caffeine.cache.Caffeine; import com.github.benmanes.caffeine.cache.LoadingCache; import java.util.*; import java.util....
theuntamed000's user avatar

1
2 3 4 5
768