Top "Chunking" questions

1. In memory management, chunking refers to strategies for improving performance by aggregating related memory-allocation requests.

Python fastest way to read a large text file (several GB)

i have a large text file (~7 GB). I am looking if exist the fastest way to read large text file. …

python performance optimization line chunking
how to split an iterable in constant-size chunks

Possible Duplicate: How do you split a list into evenly sized chunks in Python? I am surprised I could not …

python algorithm generator chunking
What is the best way to chop a string into chunks of a given length in Ruby?

I have been looking for an elegant and efficient way to chunk a string into substrings of a given length …

ruby string chunking
Slice chunking in Go

I have a slice with ~2.1 million log strings in it, and I would like to create a slice of slices …

go slice chunking
Is there an elegant way to process a stream in chunks?

My exact scenario is inserting data to database in batches, so I want to accumulate DOM objects then every 1000, flush …

java java-8 java-stream chunking
File uploads; How to utilize "chunking"?

I am (still) attempting to upload large files <200mb via a html form using php. During my research into …

php file-upload chunking
How can I upload large files by chunk, pieces?

I have got a little file sharing webpage. It's free to use it. I would like to upload files between 0…

file-upload upload chunking
Handling large SQL select queries / Read sql data in chunks

I'm using .Net 4.0 and SQL server 2008 R2. I'm running a big SQL select query which returns millions of results and …

c# sql optimization chunking
HTTP Chunked Encoding. Need an example of 'Trailer' mentioned in SPEC

I am writing an HTTP parser for a transparent proxy. What is stumping me is the Trailer: mentioned in the …

http chunked-encoding chunking http-chunked
How to calculate the optimum chunk size for uploading large files

Is there such a thing as an optimum chunk size for processing large files? I have an upload service (WCF) …

c# asp.net silverlight wcf chunking