Click here to Skip to main content
15,884,975 members
Articles / Programming Languages / Visual C++ 9.0
Article

Use the Cache(MRU) With A File To Over The Limitation Of A Process

Rate me:
Please Sign up or sign in to vote.
1.31/5 (4 votes)
16 Jul 2008CPOL4 min read 17K   10   5
This article gives a method which apply the MRU algorithm of the cache to save the frequent accessing data in process and the file systems to save the infrequent accessing data out of process.
Download catch_es.zip - 6.45 KB

Introduction

When accesses a mount of data, process often exits abnormally because it's memory is over 2.9G bytes. There are two common methods to solve this problem.

  1. Use database systems (for example BDB) to save the data. When wants to use a data, the process read a data from the DB, operate the data , and write it back to the DB.
  2. Use file to save the data. When wants to use a data, the process read a data from the file, operate the data , and write it back to the file.

Both of the methods will slow down the performance a process because they operate file systems frequently. This article gives a method which apply the MRU algorithm of the cache to save the frequent accessing data in process and the file systems to save the infrequent accessing data out of process. The main advantage of this method is high performance and can break the memory limitation of a process.

Background

This algorithm is very simple. It maintains a hash map and a bidirectional list to keep the frequent accessing data in the process memory, and the newest accessing data will push the inactivest data out of the process memory. The pushed out data will be saved in a file. The data structure of the process is as follow:

CMemManager_EqualSize_En.jpg

In order to map the key in the bidirectional list and the key in the hash table fast , the program replace the key in the bidirectional list with the pointer of the iterator of the the hash map.
The procedure is as follow:

A: Insert a data

  1. If the size of hash table is not over the setting value, the hash table will add a row. At the same time the Bata Block will allocate a unused data space and adjust the new key to the head of the bidirectional list.
  2. If the size of hash table is over the setting value, program will get the key of the tail of the bidirectional list, write the data of the key to the file and the vacated data space will be allocateded to the new data. And then program will adjust the tail of the bidirectional list to it's head.

B: Delete a data

  1. If the key of the deleted data is in the hash table, program will set the boolean of IsReleased to true and delete the corresponding data in the file.
  2. If the key of the deleted data is not in the hash table, program will delete the corresponding data in the file.

C: Access a data

  1. If the key of the accessing data is in the hash table, program will get the index of the data in the data block and adjust the key to the head of the bidirectional list. At last program will return the pointer of the data in the data block.
  2. If the key of the accessing data is not in the hash table. program will get the last key of the bidirectional list, write the data of the last key to the file. after the last steps there will be a vacated data space for future use. And then program read the wanted data from the file and put it to the vacated data space. Last program adjust the bidirectional list to change the tail to head and return the pointer of the data space which is put wanted data.

From the above description we can see that use the offset of the data in a file as the data key is an easy way. In another word every data will have it's own space in the file whenever it is in the memory of the process.

Because the program needs high performance and the file may be the memory of the computer, controling the size of the file and reducing the times of accessing the file are main factors in design file structure. In order to reduce the times of accessing the file, I advice that program do accessing operation of the file one time when gets or puts the data from the cache. In the source code only getting the data can cause reading and writing operation of the file. In order to control the size of the file, program adopts the rule of <bdo id="io-z0">redistributing </bdo>the used vacated data space in the file first and allocating the new data space in the file secondarily. In order to obey the rule. The file structure is as follow:

CMemManager_EqualSize_2.jpg

The read parts represent the vacated data space in the file and green parts represent the data space in using. Every vacated data space uses 4 bytes to record the offset of the next vacated data space in the file. The program only know the offset of the first vacated data space in the file, it can redistribute all vacated data space first.

Limitation of The Program

  1. The data in the cache must be bigger than 4 bytes.
  2. The data must be the same size.
  3. The limitation of the file is about 4G.
  4. not thread safety.

Environment

windows , Linux
gcc , vc

Using the Code

  1. Get data with adjusting frequency
C++
CFileManager_EqualSize tempFileManager_ES; //Declare the class
//Set the file name and the data size
tempFileManager_ES.createAFile("/var/tempdatafile", sizeof(int));
tempFileManager.setblocksize(10000); //Set the cache size
int aintpos = tempFileManager.malloc(0); //allocate a data resource
int **intptr;
tempFileManager.read(aintpos, 0, (void**)intptr); //get the data
**inteptr = 10; //operate the data
tempFileManager.deleteMe(); //release the resource.
  1. Get data without adjusting frequency
C++
CFileManager_EqualSize tempFileManager_ES; //Declare the class
//Set the file name and the data size
tempFileManager_ES.createAFile("/var/tempdatafile", sizeof(int));
tempFileManager.setblocksize(10000); //Set the cache size
int aintpos = tempFileManager.malloc(0); //allocate a data resource
int **intptr;
tempFileManager.read_nsort(aintpos, 0, (void**)intptr); //get the data
**inteptr = 10; //operate the data
//Write the data back to cache. Because read_snort may get data from file 
//without putting it into cache, program //must write data back.
tempFileManager.write(aintpos, 0, intptr) 
tempFileManager.deleteMe(); //release the resource. 

Using the Code

For Chinese Language

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralDon't expect this to work out of the box Pin
Member 767228821-Apr-11 5:10
Member 767228821-Apr-11 5:10 
GeneralNot LUR Pin
Arash Partow11-Jun-08 21:14
Arash Partow11-Jun-08 21:14 
AnswerRe: Not LUR Pin
sjDing75080712-Jun-08 4:57
sjDing75080712-Jun-08 4:57 
Thank you for your message. I think the algorithm is MRU in fact. I have corrected it.
GeneralRe: Not LUR Pin
Arash Partow12-Jun-08 9:36
Arash Partow12-Jun-08 9:36 
GeneralFormatting, Skill Pin
#realJSOP11-Jun-08 1:10
mve#realJSOP11-Jun-08 1:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.