Tagged Questions
The disk-io tag has no wiki summary.
13
votes
6answers
4k views
Fast Linux File Count for a large number of files
I'm trying to figure out the best way to find the number of files in a particular directory when there are a very large number of files ( > 100,000).
When there are that many files, performing "ls | ...
8
votes
5answers
155 views
Store/retrieve a data structure
I have implemented a suffix tree in Python to make full-text-searchs, and it's working really well. But there's a problem: the indexed text can be very big, so we won't be able to have the whole ...
2
votes
4answers
199 views
Out of space on NTFS disk after a series of same-sized files creation/deletion
I've ran into a really weird problem while working on a large project. I write a bunch of same-size files on a partition (tried both RAM disks and virtual disks created via diskmgmt.msc). When there ...
1
vote
1answer
27 views
Storing dynamic objects with growing lists on disk
Okay so I have been developing a system so far in main memory that has many different objects and each object stores lists of other objects in the system. Now I want to move this to persistent ...
1
vote
2answers
122 views
Webapp: Mysql: Row level security. Pro/cons? A better way to do this?
I am trying to emulate row level security on a webapp I am developing using MySQL.
Using this method: Creating a database with the the required tables where the data pertaining to all the users will ...
1
vote
1answer
40 views
Why first run of grep is several times slower than consecutive runs?
I run this command every time I build my project from the project directory:
egrep -r -n --include=*.java <my regex> .
And I cannot understand why consecutive runs are up to 10 times faster ...
1
vote
0answers
653 views
Is there a utility for the Mac (OS X Lion) to monitor cpu and disk usage per process over a period of time?
I am looking for a good utility running on OS X Lion that would give me a per process summary of CPU usage and Disk I/Os. I don't want to monitor the instant usage, but to find out the average CPU and ...
1
vote
1answer
1k views
Can anyone recommend disk I/O benchmarking software for Windows?
I want to test the performance of a filesystem under different conditions.
Specifically I want to test the performance of Windows virtual machines without compression and with compression both on ...
1
vote
2answers
2k views
low level C++ style i/o in C# for reading FAT32
I am working on reading the FAT32 entry of the hard disk and so far have been successful in reading the entries by making use of the CreateFile, ReadFile, and SetFilePointer APIs. Here is my code ...