38,406 questions
0
votes
1
answer
39
views
Spring WebFlux caching with Caffeine
I am having trouble understanding how to cache Reactive streams using the spring-data-starter-cache library. From tutorials such as https://www.baeldung.com/spring-webflux-cacheable, I see that they ...
-3
votes
0
answers
29
views
Denodo Partial Cache Bypasses Global Security Policies – How to Maintain Both Security and Performance?
I'm working on a Denodo 8.0 setup where I've created a derived view on top of base views imported from Oracle tables. These base views have Global Security Policies applied using Denodo's row-level ...
0
votes
0
answers
24
views
Is Caching With Async Call Possible using DispatchProxy
I've been assessing using DispatchProxy as a means of Interception. Whilst it is great for synchronous operations, there are challenges with async.
The new HybridCache has an async API and in any case,...
2
votes
1
answer
46
views
Cache updates in chatbot when adding new documents
I'm building a chatbot to answer legal-related questions. I'm facing an issue with caching questions and responses — the goal is to retrieve an answer when someone asks a similar question that's ...
1
vote
0
answers
65
views
Cache coherency semantics in recent Intel processors - read invalidates other copy? [closed]
I was doing some experiments on cache coherency on intel raptorlake processors. The experiment was as follows
core 0 had a cache line in modified(M) state
core 1 didn't have the same cache line in ...
-2
votes
0
answers
26
views
How do I open my Firefox Account page when it's not loading correctly [closed]
Basically when I open https://accounts.firefox.com/ it appears to be a blank white screen, loading nothing, I think because of caching. Except I don't know if it's caching or something else strange ...
0
votes
0
answers
15
views
I cannot download a crate from a remote registry
I need your help with an issue that has left me dumbfounded for days.
I have a setup with 2 artifactory servers:
server 1, which hosts my private cargo registry, a repo of type "local". I ...
-1
votes
0
answers
24
views
Next.js API Route Not Reflecting Code Changes – Stuck on Old Gemini Model Name Despite Restarting [closed]
I'm working on a Next.js project and running into a persistent issue with my /api/evaluate route.
Problem:
I kept getting repeated 500 errors from /api/evaluate, and the response showed something like:...
0
votes
0
answers
21
views
next.js app router text/x-component instead of text/html
When using Next.js App Router (e.g. app/ directory) with streaming SSR, direct page access (via F5 or entering URL) returns a text/x-component payload instead of text/html, leading to broken UI ...
0
votes
0
answers
27
views
Cloudflare worker stuck on an old version even that it builds and deploys a new one
I have a Next.js project I made for practice and I made a Cloudflare worker for it, and when I commit a new thing to GitHub Cloudflare auto builds and deploys the latest commit as usual, but when I ...
-1
votes
0
answers
23
views
Is there a way to open a second connection to IndexedDB or kill a prior request so the next loads?
I'm trying to get a bunch of MP3 blob files off of a website that stored them to the browser cache in IndexedDB > localforage. In the developer console, I tried a simple:
const request = window....
0
votes
1
answer
26
views
IIS/ASP.NET cache-control: caching all requests [closed]
I am setting the cache-control to 'no store' on my aspx page but if I navigate back to the page using the browser back button, the Page_Load function is never hit.
Am I right in thinking that ...
0
votes
3
answers
114
views
How to fix a race condition in a Kotlin 'get-or-create' cache?
My getResource method below needs to cache a single resource, but it has a clear race condition. If multiple threads call it simultaneously, the expensive createResource function can be called more ...
-3
votes
1
answer
67
views
Redis cache consistency: how do you deal with it?
Redis is quite popular in Java, spring itself provides quite easy abstraction for caching using redis.
You just apply an annotation @Cacheable or use programmatic approach cache.get(..).
There is also ...
0
votes
0
answers
23
views
Magento 2 cache tag varnish
I don't understand the way the handle my cache tag in magento 2.
I have implemented DataObject/IdentityInterface.php for my models wishlist and wishlistitem.
So when I create a wishlist for example I ...