Questions tagged [clientside-caching]
11 questions
3
votes
1 answer
Clientside Caching C#
My wpf client is loading a lot of standing data at startup from the server. So, I want to implement a caching strategy at client side.
I know about the new System.Runtime.Caching namespace in the .NET framework 4. Unfortunately, there is only a…

bitsmuggler
- 1,689
- 2
- 17
- 30
3
votes
1 answer
Caching best practice for mobile hybrid/bridge app development
I really need to limit any unnecessary network traffic and server trips. Solution: common sense caching. (I am not going to cache everything under the sun).
However, after reading through the Caching Files documentation and implementing a couple…

Kris Krause
- 7,304
- 2
- 23
- 26
2
votes
7 answers
Can JavaScript survive a full HTTP Request Roundtrip?
Is it possible to have JavaScript (specifically, JavaScript variables and their content) survive full HTTP requests? I'd like to 'cache' / persist information client-side across page changes, without having to use hidden form fields or anything HTML…

Alex
- 75,813
- 86
- 255
- 348
1
vote
1 answer
Cache Invalidation In Redis for Client side caching [Special Case]
Service1 -> Our Wrapper API service -> Redis
Service2 -> Our Wrapper API service -> Redis
Client side caching with Redis is very useful. Redis provides server push-based cache invalidation for client side cache in 2 modes:
Default mode: Redis…

Alok Kumar Singh
- 2,331
- 3
- 18
- 37
1
vote
1 answer
How to permanently save heavy data in the client-side in a Vuejs app
I have a heavy data in my vuex store that I need to keep even after a refresh for performance purposes.
Are there any proposals except LocalStorage ?

Omar
- 300
- 5
- 14
1
vote
0 answers
RadGrid - Client-Side Binding and Caching
I have an asp.net application where I have a radGrid control that displays records from a database. I would like the grid control to do client side caching (paging and sorting). However, I can only find one sample (Grid - Client-Side Binding and…

Csharp
- 2,916
- 16
- 50
- 77
0
votes
1 answer
Does Redisson RLocalCachedMap get invalidated with the changes in Redis-Server?
My use case:
I have a single node application(MyApplication) which uses RLocalCachedMap (say testMap)to communicate with redis-server and also cache data locally in aplication.
On the other hand there is another Non java application say…

Rajesh Reddy
- 1
- 1
0
votes
0 answers
How do I prevent the images from being requested on Shift+F5?
I have a website with a page containing a lot of images. Those images will never change on the server (if they change, the URI on the page referencing them will have a different version parameter, in an URI such as…

Arseni Mourzenko
- 50,338
- 35
- 112
- 199
0
votes
1 answer
Gulp webserver unable to load a cachebusted JS resource
I have bunch of JS files that have been versioned during deployment for JS cache-busting. It looks like this.
I perform minification & compression using gulp. After it is done, I will…

Anvesh Checka
- 3,787
- 2
- 21
- 28
0
votes
1 answer
Issues with client-side caching of lookups in Angular + Breeze project
We have a project based on John Papa's HotTowel SPA Using Angular, Breeze and UI-Bootstrap.
We are running in to problems using clientside caching to load Drop downs from SQL Lookup tables. The view loads before the data is cached resulting in…

jwgreg
- 133
- 10
0
votes
1 answer
Respond with 304 - Client-side Caching using ASP.NET Webservices
I am developing my application in ASP.NET 4.5. I setup a webservice. The webservice get accessed by Jquery using a GET Ajax call. The function has a 'id' parameter and for each id it returns different content.
I want to cache that data both on…

Liron Harel
- 10,819
- 26
- 118
- 217