Tagged Questions
0
votes
1answer
111 views
Shared data between sessions in php (caching)
I need to store data between different users (thus different sessions) into RAM to speed up web application written in PHP (database and filesystem are not an option).
I have been googling for couple ...
0
votes
0answers
53 views
How many bits are required for physical / logical address?
If i have 2Gbytes RAM (byte-addressable) and 1Mbyte cache and block size is 64 bytes, how do I calculate how many bits are required for physical / logical address?
2
votes
1answer
125 views
use MySQL server as “cache”
I know this is a weird question but I have 2 servers, one a vps and another, a mysql host. Now my issue is that I want to try and lower the load on the vps as it is a startup 128mb vps.
Slight ...
1
vote
1answer
104 views
SOC embedded SRAM cache coherency
I'm studying the topic of Memory Hierarchy in Embedded Systems. On some embedded SOC devices dedicated SRAM is provided on die. My question is:
Why is SOC embedded SRAM usually not cache coherent ...
0
votes
1answer
57 views
Is it ok if a machine is constantly at 85% of its physical memory?
I'm not sure if this is the right place to ask about hardware but I couldn't find a subforum for just monitoring hardware. If you know of one please direct me to it and I'll ask there.
I'm looking at ...
0
votes
2answers
254 views
Android. How to keep cache in RAM?
I need to search through text files (around 40MB) in my app with regular expressions, as you can imagine, it normally takes 1 minute or so to get it done. AND I have to do it repeatedly.
I wonder if ...
0
votes
1answer
33 views
Calculating the maximal time to access consecutive values in a DRAM in page mode
From a 16MB DRAM, I have to calculate the maximum time it can take to read 8300 consecutive values. Here are the specifications that I have:
-the DRAM is structured as a table of 4096 x 4096 cell.
...
4
votes
2answers
659 views
Is there a way to force mongodb to store certain index in ram?
I have a collection with a relatively big index (but less than ram available) and looking at performance of find on this collection and amount of free ram in my system given by htop it's seems that ...
2
votes
1answer
39 views
Linear Algebra Library for large dense matrices
I'm implementing a linear regression algorithm for geological data analysis and I am falling in the situation where the linear system matrix does not fit on any of the mainframe computers RAM and any ...
0
votes
0answers
389 views
SSD vs RAM based Cache Performance [closed]
We are in need for a cache layer that will sit between the database and the UI (web). I think there are a few places where data caching will add a lot of value to speed it up. The question here is ...
5
votes
3answers
3k views
Why isnt RAM as fast as registers/cache memory? [closed]
Please excuse if the question is very basic.
Why do we need to cache in Cache Memory? Why cant RAM Memory be made as fast as register or Cache Memory or Cache be as large as RAM Memory (4GB) so that ...
6
votes
2answers
6k views
Load a MySQL innodb database into memory
I have a MySQL innodb database at 1.9GB, showed by following command.
SELECT table_schema "Data Base Name"
, sum( data_length + index_length ) / 1 048 576
as "Data Base Size in MB"
...
1
vote
4answers
478 views
Efficient reordering of large dataset to maximize memory cache effectiveness
I've been working on a problem which I thought people might find interesting (and perhaps someone is aware of a pre-existing solution).
I have a large dataset consisting of a long list of pairs of ...
