Tagged Questions

1
vote
2answers
81 views

boost::multi_index_container with random_access and ordered_unique

Hi, I have a problem getting boost::multi_index_container work with random-access and with orderd_unique at the same time. (I'm sorry for the lengthly question, but I think I shou …
3
votes
7answers
160 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 …
0
votes
2answers
189 views

why we can’t Serialize these objects ?

why we can't Serialize objects into Random Access file ? and on the other hand we can serialize objects into sequential access file ? ""C# does not provide a means to obtain an ob …
3
votes
3answers
206 views

SQLite - ORDER BY RAND()

In MySQL I can use the RAND() function, is there any alternative in SQLite 3?
1
vote
1answer
141 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. Spe …
1
vote
8answers
296 views

c# Fastest way to randomly index into an array

I have an array of double values "vals", I need to randomly index into this array and get a value. GenRandomNumber() returns a number between 0 and 1 but never 0 or 1. I am using C …
1
vote
1answer
75 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 …
4
votes
2answers
247 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 …
3
votes
8answers
2k views

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

Hi all, 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 …
0
votes
1answer
101 views

Can and How do you use RandomAccessFile with a file contained on an FTP server?

This problem pertains to Java By using RandomAccessFile I intend to be able to also modify the file without blanking it.
7
votes
7answers
2k 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.
6
votes
2answers
408 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 fi …