Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
807 views

Opening Large (24 GB) File In C

I'm trying to read in a 24 GB XML file in C, but it won't work. I'm printing out the current position using ftell() as I read it in, but once it gets to a big enough number, it goes back to a small ...
3
votes
2answers
1k views

Python class to merge sorted files, how can this be improved?

Background: I'm cleaning large (cannot be held in memory) tab-delimited files. As I clean the input file, I build up a list in memory; when it gets to 1,000,000 entries (about 1GB in memory) I sort ...
1
vote
4answers
1k views

Paperclip, large file uploads, and AWS

So, I'm using Paperclip and AWS-S3, which is awesome. And it works great. Just one problem, though: I need to upload really large files. As in over 50 Megabytes. And so, nginx dies. So apparently ...
1
vote
1answer
893 views

handling large uploads on django, exceeding the max size on nginx

we have a django app on nginx where users upload media files. the media are huge such as 30min tv and radio programs resulting 100-300mb, and our shared hosting limits the upload to 30mb. how to ...
0
votes
1answer
190 views

Is there a way to make pos_type and off_type to be an int64_t using traits?

I am trying to understand what traits are, for example expressions like typedef typename traits_type::off_type off_type in the GNU implementation of fstream. This question came up when I was working ...
0
votes
3answers
278 views

How to solve this compatibility-problem regarding large file support?

A library using off_t as a parameter for one function (seek). Library and application are compiled differently, one with large file support switched off, the other with large file support. This ...