Tagged Questions

Random access is the possibility of accessing any given record in a collection in the same time in contrast to sequential access in which distant records take longer to access than nearby records. An array is an example of a random-access data structure which can be contrasted to a list which requires sequential access.

learn more… | top users | synonyms

14
votes
3answers
5k views

SQLite - ORDER BY RAND()

In MySQL I can use the RAND() function, is there any alternative in SQLite 3?
14
votes
7answers
3k views

Compression formats with good support for random access within archives?

This is similar to a previous question, but the answers there don't satisfy my needs and my question is slightly different: I currently use gzip compression for some very large files which contain ...
13
votes
8answers
5k views

How to insert characters to a file using C#

I have a huge file, where I have to insert certain characters at a specific location. What is the easiest way to do that in C# without rewriting the whole file again.
8
votes
9answers
6k views

.NET C# - Random access in text files - no easy way?

I've got a text file that contains several 'records' inside of it. Each record contains a name and a collection of numbers as data. I'm trying to build a class that will read through the file, ...
7
votes
2answers
431 views

Closing a RandomAccessFile sometimes takes exactly 45 seconds

In my program, closing a java.util.RandomAccessFile sometimes takes exactly 45 seconds (well, almost exactly: between 44.998 and 45.003 seconds). The program creates and closes lots of small files. ...
7
votes
3answers
848 views

STL deque accessing by index is O(1)?

I've read that accessing elements by position index can be done in constant time in a STL deque. As far as I know, elements in a deque may be stored in several non-contiguous locations, eliminating ...
6
votes
3answers
112 views

Very fast sampling from a set with fixed number of elements in python

I need to sample uniformly at random a number from a set with fixed size, do some calculation, and put the new number back into the set. (The number samples needed is very large) I've tried to store ...
6
votes
6answers
335 views

CSV Random Access; C#

I have a 10GB CSV file which is essentially a huge square matrix. I am trying to write a function that can access a single cell of the matrix as efficiently as possible, ie matrix[12345,20000]. ...
6
votes
3answers
512 views

File Streaming in Java

I'm currently developing 3D graphics application using JOGL (Java OpenGL binding). In brief, I have a huge landscape binary file. Due to its size, I have to stream terrain chunks in the run-time. ...
6
votes
1answer
469 views

java.io.RandomAccessFile Invalid Argument for large files on mac

I'm running a program which needs random access to a very large file (approximately 151 gigabytes). I've found that whenever it runs on one of the MacPro machines in the Orchard lab ( details at ...
6
votes
4answers
200 views

is there a such thing as a randomly accessible pseudo-random number generator? (preferably open-source)

first off, is there a such thing as a random access random number generator, where you could not only sequentially generate random numbers as we're all used to, assuming rand100() always generates a ...
6
votes
3answers
679 views

Random access gzip stream

I'd like to be able to do random access into a gzipped file. I can afford to do some preprocessing on it (say, build some kind of index), provided that the result of the preprocessing is much smaller ...
5
votes
2answers
926 views

Multi-part gzip file random access (in Java)

This may fall in the realm of "not really feasible" or "not really worth the effort" but here goes. I'm trying to randomly access records stored inside a multi-part gzip file. Specifically, the files ...
5
votes
3answers
717 views

Java access to big file

I am looking for an efficient way to create a file whose size is unknown but can range from mb's to gb's and fill its content randomly. I may write first 200 bytes than jump to the end and write last ...
5
votes
7answers
986 views

What is the best compression algorithm that allows random reads/writes in a file?

What is the best compression algorithm that allows random reads/writes in a file? I know that any adaptive compression algorithms would be out of the question. And I know huffman encoding would be ...
4
votes
3answers
96 views

Random Access of Large Media Files on a Remote Web Server

One of our applications currently relies on mapped drives to access large media files (20-100MB) on the local network. We would like to change this to some sort of web service so that we can make it ...
4
votes
1answer
648 views

Does FileInputStream.skip() do a seek?

I want to copy the last 10MB of a possibly large file into another file. Ideally I would use FileInputStream, skip() and then read(). However I'm unsure if the performance of skip() will be bad. Is ...
4
votes
7answers
455 views

Simple API for random access into a compressed data file

Please recommend a technology suitable for the following task. I have a rather big (500MB) data chunk, which is basically a matrix of numbers. The data entropy is low (it should be well-compressible) ...
4
votes
5answers
403 views

Random-access container that does not fit in memory?

I have an array of objects (say, images), which is too large to fit into memory (e.g. 40GB). But my code needs to be able to randomly access these objects at runtime. What is the best way to do this? ...
4
votes
8answers
763 views

Do any Java libraries provide a random access Queue implementation?

I'm implementing a sliding window over a stream of events, in Java. So I want a data structure which allows me to do the following: add to the end of the data structure when new events occur; remove ...
3
votes
2answers
169 views

Cant find the newline character in a file (java)

I am trying to get the last line of a file, but my output shows that it never finds it. I also tried looking for "[" which all the lines start with, but unless the jumps were perfect the program will ...
3
votes
3answers
407 views

RandomAccessFile probelm

Hi: I have to listern a file,when its content is added,I will read the new line,and work on the content of the new line. The file's length will never decrease.(in fact, it is the tomcat log file). I ...
3
votes
1answer
319 views

Why does RandomAccessFile use int as offset

I am writing some data access test implementation and I need random access to file content. Here's the code: RandomAccessFile randomAccessFile = new RandomAccessFile(file, "rwd"); final byte b[] = ...
3
votes
2answers
586 views

In-memory version of Java's FileChannel

I'm in the process of making some changes to a library that I'm using. In order to reduce memory usage the library is writing its temporary data to disk instead of keeping it in memory. However, for ...
2
votes
0answers
87 views

Easy tree traversal and fast random node access

Edited after Alex Taggart's remark below. I am using a zipper to easily traverse and edit a tree which can grow to many thousands of nodes. Each node is incomplete when it is first created. Data is ...
2
votes
1answer
106 views

How to correctly read from RandomAccessFile in Clojure?

I've been trying to develop a little library for reading MPQ files in Clojure, and I decided to use RandomAccessFile as MPQ is a binary format. However, I'm having trouble with the method ...
2
votes
4answers
152 views

Random access to large XML files

I have a set of tools which index large XML file (MediaWiki dump files) and use those indeces for random access to the individual records stored in the file. It works very well but I'm "parsing" the ...
2
votes
3answers
313 views

C# - Random write to file - writing the second line before the first line

I am trying to write to a file using a FileStream and want to write the second line and then write the first line. I use Seek() to go back to the beginning after writing the second line and then write ...
2
votes
3answers
948 views

Buffered RandomAccessFile java

RandomAccessFile is quite slow for random access to a file. You often read about implementing a buffered layer over it, but code doing this isn't possible to find online. So my question is: would ...
2
votes
1answer
173 views

Random-access container for strings in python?

I manipulate with indexed instances (say, music tracks) and have to lookup object's name by its index (int->string). Dicts are too slow (I have about 10M objects). Memory is not a problem, so the most ...
2
votes
1answer
179 views

Indexing / random access to 7zip .7z archives

Tools exist to provide random access to gzip and bzip2 archives: gzip zran.c from the ghostscript source code bzip2 seek-bzip by James Taylor I'm looking for any similar solution for 7zip (The ...
2
votes
6answers
2k views

Java: reading strings from a random access file with buffered input

I've never had close experiences with Java IO API before and I'm really frustrated now. I find it hard to believe how strange and complex it is and how hard it could be to do a simple task. My task: ...
2
votes
8answers
879 views

Efficient insertion/deletion algorithm for an array

I subscribe to a data feed and from that create and maintain a structure using the index values on the INSERT/DELETE messages. I would like to ask the assembled cognoscenti whether they know of any ...
2
votes
5answers
399 views

Any seekable compression library?

I'm looking for a general compression library that supports random access during decompression. I want to compress wikipedia into a single compressed format and at the same time I want to ...
2
votes
1answer
442 views

Does RandomAccessFile.close() internally call FileChannel.force()?

I am using RandomAccessFile to perform some writes to a file as part of a transaction. Before I commit my transaction, I want to be absolutely sure that the data is written to disk. Calling ...
2
votes
2answers
1k views

What is the difference between file and random access file?

what is the difference between file and random access file?
1
vote
2answers
42 views

How can i return the address of a line in a Random Access file?

i'm trying to create a Random Access file in java. I write something in a new line. How can i return the address of that line in Java? Also, I'm a bit confused with RAFs. For example i have a ...
1
vote
3answers
33 views

Get arbitrary number of random elements from a php array in one line

I wanted to pull an arbitrary number of random elements from an array in php. I see that the array_rand() function pulls an arbitrary number of random keys from an array. All the examples I found ...
1
vote
3answers
74 views

Recommendation for random accessing large amount of objects (like a hash table)

I'm processing some generated data files (hundreds of Mbytes) which contains several G objects. I need to random access these objects. A possible implementation, I guess, might be a big HashTable. My ...
1
vote
1answer
89 views

How to Search for a String in a RandomAccessFile with this code?

I am trying to make a little search method, and up to now I have one that only searches int types, I've been wondering if its somehow possible to re implement this method to search Strings? ...
1
vote
2answers
74 views

Appending a Random Access File

I'm having problems appending to a random-access file. I don't seem to be able to overwrite a field within the file. Instead, I'm only appending to the file, and leaving the old name intact. fstream ...
1
vote
2answers
83 views

Write to random access file using superclass and extended class methods

I have a Book class and a Library Book class which extends Book. I am storing the information in a random access file. I have a writeToFile method which writes Book objects to a random access file. My ...
1
vote
1answer
85 views

Using Multiple Threads to write in single file

Can i use multiple threads to write in RandomAccessFile in Java ? I know RandomAccessFiles allows to read & write at any position. I want to create n portions of above File and let ...
1
vote
2answers
80 views

random seek in 7z single file archive

Is it possible to do random access (a lot of seeks) to very huge file, compressed by 7zip? The original file is very huge (400gb xml) and I can't store it in unpacked format (i have no so much free ...
1
vote
2answers
180 views

compilation error: request for member in something not a structure or union

Edit: The code below has been modified to work as the problem has been solved. Specifically, (*hardwareList.next_item)->next was originally written without brackets (e.g. as ...
1
vote
5answers
69 views

RandomAccessFile cannot be found by compiler after being declared

The code below produces the following error when I try to compile it: cannot find symbol symbol : variable airplanesFile The error is produced by the last statement. Why can the RandomAccessFile ...
1
vote
2answers
219 views

quick random row selection in Postgres

I have a table in postgres than contains couple of millions of rows. I have checked on internet and I found the following SELECT myid FROM mytable ORDER BY RANDOM() LIMIT 1; it works, but it's ...
1
vote
6answers
605 views

Python Random Access File

Is there a Python file type for accessing random lines without traversing the whole file? I need to search within a large file, reading the whole thing into memory wouldn't be possible. Any types or ...
1
vote
2answers
395 views

Random access priority queue

Continuing List to priority queue I'm implementing a improved priority_queue with random access. template <class T, class Container = std::vector<T> > class Heap { public: Heap() {} ...
1
vote
2answers
113 views

Is it possible to set a speicifc byte in a RandomAccessFile back to null?

Origianlly, when I created the RandomAccessFile, I skipped over some bytes so those stayed as null, but now I need to delete some of the bytes I wrote. Right now, what I'm doing is overwriting the ...

1 2