Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
518 views

Red Black Tree versus B Tree

I have a project in which I have to achieve fast search, insert and delete operations on data ranging from megabytes to terabytes. I had been studying data structures of late and analyzing them. Being ...
3
votes
3answers
185 views

Creating a Key-Value Store on Disc with Concurrency in Java

I need to read a set of files and break it in to key-value pairs, and save these as a (key,list of values) for that key on disc, much like the map-reduce paradigm. Everything is on one computer ...
1
vote
2answers
79 views

How do I add a drop down list of strings that represent different worksheet names in Excel 2007?

I have recently been placed on a reporting project for my job. My overall objective is to make a report of 9 different charts that is able to filter the data by date and also by group. There are 22 ...
1
vote
1answer
171 views

How can I decommit a file-mapped page?

I have a memory mapped file, and a page in a view which is currently committed. I would like to decommit it. MapViewOfFile tells me I cannot use VirtualFree on file mapped pages. Is there some other ...
0
votes
0answers
38 views

How can I attach a stub to my payload to decipher and facilitate the program's execution?

How would I go about attaching a stub to my payload, which shall control the execution of the payload. I have looked into file mapping ...
0
votes
1answer
91 views

how to create a share memory pool in windows

I want to make a share memory pool for all the other process to share the data, but after I read about the CreateFileMapping API document, I was confused about that it will need to specify the size of ...
0
votes
0answers
38 views

UnknownError_Num 8: MemoryMappedFile

I'm having trouble using the MemoryMappedFile using the following code. static int NoOfChannels = 1164; static int NoOfRows = 64; static int N = NoOfChannels * NoOfRows; static int ...
0
votes
1answer
38 views

How to improve general i/o to be on par with file mapping

File mapping is great, but for comparatively large files on 32-bit system one should forget about it and implement everything with general file i/o. For large random reads and write the system cache ...