I am working on file indexing and found one solution to store keyword index into memory map by converting keyword into integers.But still i am not sure how many digits i can store by using it.
Like i have one keyword "Network Analysis by Graph theory and statistics"
if i convert it into integer it will be too lengthy to store as keyword.
map = (int*)mmap(0, FILESIZE, PROT_READ, MAP_SHARED, fd, 0);
How can i overcome my pblm.
Thanks in advance.
Regards
Manish
Like i have one keyword "Network Analysis by Graph theory and statistics"
if i convert it into integer it will be too lengthy to store as keyword.
map = (int*)mmap(0, FILESIZE, PROT_READ, MAP_SHARED, fd, 0);
How can i overcome my pblm.
Thanks in advance.
Regards
Manish
Comment