Questions tagged [data-caching]

For questions relevant with caching of the data, not the instructions.

A cache can store data or instructions, to increase performance of our programs. data-caching has to do with caches that store data.

35 questions
4
votes
1 answer

How much data should we cache in memory in single page applications?

I was curious to know if there is any limit for data caching in Single page applications using shared service or ngrx. Does caching too much data on front end impacts the overall performance of web Application (DOM). Lets say I have a very big…
shreyansh
  • 1,637
  • 4
  • 26
  • 46
4
votes
2 answers

System.Web.Caching.Cache throws null exception in a model

Maybe this question should be easy, but it is not. I have read Problem Using the System.Web.Caching.Cache Class in ASP.NET. I have a singleton class: private System.Web.Caching.Cache _cache; private static CacheModel _instance = null; private…
Snake Eyes
  • 16,287
  • 34
  • 113
  • 221
3
votes
1 answer

MVC3 Partial View OutputCache overridden by parent view

When attempting to set a different OutputCache property on a partial view I find that the PartialView cache is using the parents output cache duration. With the following code I would hope that the RenderPartial would result in a shorter OutputCache…
likestoski
  • 1,901
  • 4
  • 24
  • 41
2
votes
1 answer

Data caching for an ASP.NET website in a web farm environment

I've done some searching and haven't found a specific answer. Anyhow, I was wondering how most medium sized ASP.NET based websites cache data so that they don't always have to database look ups for the same data on different pages when running on a…
u84six
  • 4,604
  • 6
  • 38
  • 65
2
votes
1 answer

Where does Azure Machine Learning Service cache data?

I am looking to use Azure Machine Learning Services (the one with the new drag and drop feature; still in preview) in a new data science project. I have realised that I can preview the data when I connect a data set; I am able to do this using the…
NITHIN B
  • 214
  • 1
  • 9
2
votes
1 answer

ASP.net MVC removing repeated data calls

Ive got a asp.net mvc site that works with ASP.net Authentication. I have a UserInformation table which stores extra information on each user aswell. On pretty much every page i am calling to the database to pull the UserInformation record for the…
MattyD
  • 185
  • 1
  • 3
  • 14
2
votes
2 answers

When to use Apache Ignite?

I am working in a project where I was suggested that data caching might be useful. I came across Apache Ignite but I am unable to understand if it is in fact just and in memory store or is it a layer above the database. If there is any clear…
Nikhil Girraj
  • 1,135
  • 1
  • 15
  • 33
1
vote
1 answer

Appfabric DataCache Deserialization Issue on Get

We are having a strange problem with the Appfabric DataCache. Sometimes, 1 in 1000 perhaps, we get exceptions from the cache Get method cache.Get(key); (public object Get(string key)). The exception is Object of type …
jasper
  • 3,424
  • 1
  • 25
  • 46
1
vote
1 answer

Logic Apps - SQL Connector returning cached data?

I have a Logic App that uses the "SQL Server - When an item is modified (V2)" trigger, monitoring an Azure SQL DB for updated rows. When running this LA, I noticed that the modified row that came as output for this trigger did NOT contain the…
1
vote
1 answer

How can i preserve list contents on postbacks?

On the page load event of my webpage i fill the list of with the contents of the structure Structure MainStruct Dim Ans1 As String Dim Ans2 As String End Structure Dim Build As New List(Of MainStruct) The problem i that on…
OrElse
  • 9,709
  • 39
  • 140
  • 253
1
vote
1 answer

caching large amount of data in android

I have some technical issue and not having much understandings about it. Please guide me. I actually have to cache large amount of data (including images and texts) in android after getting it from a central server. The data will be added and…
Husnain Iqbal
  • 466
  • 6
  • 16
1
vote
1 answer

Data caching security concerns in asp.net

well caching is a perfect way to speed up access to data which are public ( all users of website ) and frequently used. but what about data that are supposed to be accessed by a specific role ( e.g just Administrators ) . is this sort of caching…
mohsen dorparasti
  • 8,107
  • 7
  • 41
  • 61
1
vote
0 answers

Submitting a WebRequest from within a CLR Trigger

I just implemented a prototype solution for updating my caching server in real-time by assigning a CLR Trigger to a table so that whenever a certain column is updated the URL called from the trigger will update the caching server with the correct…
Storm
  • 4,307
  • 11
  • 40
  • 57
0
votes
1 answer

How to store data to redis at specific Time interval in Go

I am trying to Set Data to Redis at (6 am, 12 pm, 6 pm and 12 am). But all I can do is setting an expiration time for data caching in redis. Is there any way in Golang to do this? Code: err := client.Set(key, data[]byte, 6 * time.Hour).Err()
0
votes
1 answer

MIPS: What instructions fetches data from memory?

There are a multitude of different instructions in MIPS. I'm currently learning about data and instruction cache. Instruction cache simply takes what it can so to say, depending on the block size it might utilize spatial locality and fetch multiple…
Don_twice
  • 41
  • 1
  • 6
1
2 3