1. In memory management, chunking refers to strategies for improving performance by aggregating related memory-allocation requests. 2. In HTTP message transmission, it refers to a facility that allows inconveniently large messages to be broken into conveniently-sized smaller "chunks."
0
votes
0answers
9 views
html5 file chunking and httphandler
I am using HTML5 to get file and slice the file. And then sending file chunks XMLHttpRequest to HTTPHandler. The HTTPHandler is implementing IHttpHandler and IRequireSesssionState. So the requests are ...
0
votes
0answers
48 views
upload large video using chunks via http post
I want to upload a large video from iPhone to a web server. I tried with below code. It's working for small files but when I try to upload large file it gets crashed.
Code:
NSMutableURLRequest ...
0
votes
1answer
21 views
Using of nltk for chunking arabic text
I have a project about chunking of Arabic text
I want to know if it is possible to use NLTK to extract the chunks NP, VP, PP of arabic Text and how I can use an Arabic corpus.
Please any one help me!
...
0
votes
1answer
96 views
I can't find Memory leak
Maybe this is not a good question to post but I am kinda desperate. I have a little piece of code, and i have a memory leak, but i don't know how to overcome it. please help.
var nPiece = ...
0
votes
1answer
21 views
How to enable chuncking on Apache 2.2.3 on Redhat system
My Apache (version 2.2.3 on redhat) server doesn't accept chunked-encoding, throwing this error:
chunked Transfer-Encoding forbidden: /services/soap.
I saw some people have the same problem, they ...
0
votes
1answer
46 views
Should I remove Stop words with POS tagging?
I'm new to this NLP stuff but all the examples of POS tagging and Sentence Chunking I have seen don't seem to have removed stops words. So question I have if I'm doing POS tagging and Chunking is does ...
2
votes
0answers
155 views
Save Video Stream in Chunks From Camera
I currently have a MJPEG camera that I need to capture and save its video in hour intervals.
I have tried to achieve this by chunking the incoming data and saving it all to a file, but the file that ...
5
votes
1answer
158 views
Most memory efficient way to read chunk in a buffer in Python [duplicate]
I have a text file of lines (of several GB and ~ 12 millions of lines), where each line is a point x, y, z, + accessory info. I wish to read chunk-by-chunk the file, processing the point and split ...
1
vote
3answers
203 views
split file on Nth occurrence of delimiter
Is there a one-liner to split a text file into pieces / chunks after every Nth occurrence of a delimiter?
example: the delimiter below is "+"
entry 1
some more
+
entry 2
some more
even more
+
entry ...
6
votes
1answer
91 views
laziness does not work as expected
(defn seq-trial
[]
(map #(do (println "hello " %) (inc %)) (range 10)))
(take 3 (seq-trial))
The code snippt above when evaluated prints out the following -
(hello 0
hello 1
hello 2
hello ...
0
votes
1answer
193 views
Python fastest way to read a large text file (several GB) [duplicate]
i have a large text file (~7 GB). I am looking if exist the fastest way to read large text file. I have been reading about using several approach as read chunk-by-chunk in order to speed the process.
...
0
votes
2answers
71 views
How to chunk array processing in R?
I am calculating the correlation between two data sets but due to the big size of the data (10 GB) while my RAM is only 6 GB I am facing a memory issue. I wonder how can to chunk my code?
dir1 <- ...
0
votes
1answer
84 views
Split VARCHAR field into 2 rows MySQL
I have a database full of emails. It contains the to, from, subject, body, etc as columns. I am trying to output essentially the same format, but for the application I will be using the output file ...
0
votes
2answers
133 views
Chunking with nltk
How can I obtain all the chunk from a sentence given a pattern.
Exemple
NP:{<NN><NN>}
Sentence tagged:
[("money", "NN"), ("market", "NN") ("fund", "NN")]
If I parse I obtain
(S (NP ...
-1
votes
1answer
183 views
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 0mb and 1GB. I'm searching in Google since two days, but I can't find anything what I needed...
My ...
1
vote
2answers
50 views
Getting start index of chunks as part of result when chunking Ruby array
I have a situation in which I want to separate an array initialized with nils into the empty segments and segments containing consecutive runs of numbers.
I found the higher order chunk function of ...
3
votes
1answer
488 views
Download file in chunks (Windows Phone)
In my application I can download some media files from web. Normally I used WebClient.OpenReadCompleted method to download, decrypt and save the file to IsolatedStorage. It worked well and looked like ...
2
votes
2answers
72 views
Identify names in a string
I would like to find a good way of identifying names of people, places, etc. within users search queries on my site. For example, if a user asks "how old is George Washington", I need to be able to ...
0
votes
1answer
62 views
Does chunking incorporate asynchronous execution? How to stream chunks asynchronously?
In the Play Documentation Chunks are introduced as a solution to "streaming content". I am unsure whether streaming content can be produced slowly without blocking the HTTP thread or if I must ...
2
votes
1answer
253 views
Chunk reading in Spring Batch - not only chunk writing
My assumption
In my understanding "chunk oriented processing" in Spring Batch helps to me efficiently process multiple items in a single transaction. This includes efficient use of interfaces from ...
2
votes
1answer
657 views
How to handle file upload chunks on the server (Plupload/Spring MVC)?
On our client, it is possible to be uploading large files. We want to use chunking to reduce the size of the requests. We are using Plupload, so it's easy to send up the files in chunks. However, I'm ...
2
votes
2answers
437 views
Efficient (memory-wise) function for repeated distance matrix calculations AND chunking of extra large distance matrices
I wonder if anyone could have a look at the following code and minimal example and suggest improvements - in particular regarding efficiency of the code when working with really large data sets.
The ...
5
votes
3answers
146 views
python: is there a library function for chunking an input stream?
I want to chunk an input stream for batch processing. Given an input list or generator,
x_in = [1, 2, 3, 4, 5, 6 ...]
I want a function that will return chunks of that input. Say, if chunk_size=4, ...
3
votes
1answer
87 views
Rejoining chunked HTML 5 uploads
We've built a HTML5 uploader using file api from scratch with no outside libraries and it was working fine until we tried to upload a file > 150MB. At this point we realised we need to upload the file ...
8
votes
3answers
308 views
In Clojure, are lazy seqs always chunked?
I was under the impression that the lazy seqs were always chunked.
=> (take 1 (map #(do (print \.) %) (range)))
(................................0)
As expected 32 dots are printed because the ...
2
votes
0answers
268 views
PHP Script watchdog timer
To the community,
I am currently writing a PHP script to serve out files using the standard chunk as such:
set_time_limit(0);
ob_clean();
ob_start();
while (SoapService->nextChunk()) {
...
0
votes
0answers
184 views
Chunking uploads in Owncloud [closed]
I need to be able to upload files larger than 2GB to a server using Owncloud. To do this, uploads would presumably need to be chunked.
How would I amend the current upload functionality in Owncloud, ...
2
votes
4answers
330 views
File Chunking Performance in C#
I am trying to empower users to upload large files. Before I upload a file, I want to chunk it up. Each chunk needs to be a C# object. The reason why is for logging purposes. Its a long story, but I ...
-3
votes
5answers
2k views
How do I use File.ReadAllBytes In chunks
I am using this code
string location1 = textBox2.Text;
byte[] bytes = File.ReadAllBytes(location1);
string text = (Convert.ToBase64String(bytes));
richTextBox1.Text = ...
0
votes
0answers
23 views
Prunning rule for penn treebank
CoNLL2000 is a shared task about shallow parsing (chunking) problem. I have got a script to extract corpus from Penn Treebank, which is used in this shared task. Have anyone got the document about ...
0
votes
0answers
72 views
pread returns 0 when it's not supposed to?
I am writing a file transfer program. However for some reason pread is returning 0 despite not being at the end of the file. Can anyone take a look at my code and see the problem? It works ...
0
votes
0answers
94 views
Is there an implementation of the Voting Experts chunking algorithm in R?
I am trying to do some chunking analysis where I separate a string like:
"thequickbrownfoxjumped"
into
"the quick brown fox jumped"
using unsupervised learning methods.
I have stumbled across ...
0
votes
2answers
72 views
S4 class for chunked data in R- inherited numeric methods won’t work
I want to create an S4 class in R that will allow me to access large datasets (in chunks) from the cloud (similar to the goals of the ff package). Right now I'm working with a toy example called ...
7
votes
2answers
419 views
Memory usage serializing chunked byte arrays with Protobuf-net
In our application we have some data structures which amongst other things contain a chunked list of bytes (currently exposed as a List<byte[]>). We chunk bytes up because if we allow the byte ...
0
votes
1answer
298 views
How to do streaming and chunking for wsHttpBinding
I need to transfer large files (3-4 Gb) from Client to Server using WCF but binding which is already in place is wsHttpBidning. I have to use thing binding. Using custom binding is also out of option. ...
0
votes
0answers
177 views
Java PrintWriter behavior as socket
I made a server in which the sending of the data itself is made like this:
PrintWriter writer = new PrintWriter(new OutputStreamWriter(clientSocket.getOutputStream(), "UTF-8"));
writer.write(json);
...
0
votes
0answers
233 views
Spring batch 2.1.8 Commit interval set in Chunk
I have a peculiar situation where in I need to find what is the commit interval set in my in my reader. Finding the same in beforeStep would do. So is there a way to find the information from ...
1
vote
1answer
76 views
Chunking a text into 5-line chunks then working over each
I'm trying to write a program that will take a text file organised in 5 line blocks and slice the entire text into these blocks to work on separately.
At the moment I'm trying to use:
text = ...
0
votes
1answer
171 views
NLTK Chunking Error
I'm trying to implement a sentence chunker based on a Maxent Classifier, as described in the NLTK book (Example 7.9):
http://nltk.googlecode.com/svn/trunk/doc/book/ch07.html#code-classifier-chunker
...
0
votes
3answers
632 views
ASP MVC FileStreamResult OutOfMemoryException
I have a large zip file (500MB or greater) that I am reading into a MemoryStream and return as a FileStreamResult. However, I am getting a OutOfMemory Exception for files over 200MB. Within my ...
3
votes
2answers
368 views
How to implement a lazy stream chunk enumerator?
I'm trying to split a byte stream into chunks of increasing size.
The source stream contains an unknown number of bytes and is expensive to read. The output of the enumerator should be byte arrays of ...
1
vote
2answers
449 views
How do you force Axis2 to use HTTP 1.0 for a webservice call?
I'm having issues accessing a web service provided by a third party. Looking at the Axis2 wire trace I can see \r\n3ff8\r\n in the middle of my the XML tags coming back which is causing Axis2 to have ...
0
votes
0answers
131 views
Docbook: ToC not generated in chunked html for a set of books
I'm writing some books in Docbook 5.0. I'm including them in a set as follows:
<?xml version="1.0" encoding="UTF-8"?>
<set>
<title>The Vision Series</title>
<xi:include ...
0
votes
1answer
98 views
Writing a lexer for chunked data
I have an embedded application which communicates with a RESTful server over HTTP. Some services involve sending some data to the client which is interpreted using a very simple lexer I wrote using ...
0
votes
0answers
56 views
how to download a file in multiserver
now i'm making a download accelerator application using java with particularly function is:
Downloader can chunking file
crawler can looking for"mirror"to file that will download
for this i have ...
0
votes
1answer
155 views
org.annolab.tt4j - Searching for a chunking tutorial
I'm trying to understand how to use the TreeTagger
http://www.ims.uni-stuttgart.de/projekte/corplex/TreeTagger/
wrapped by tt4j
http://code.google.com/p/tt4j/
to chunk some text.
I can't find any ...
0
votes
4answers
89 views
Creating arbitrary sized groups from a list of object with lambda/linq in C#
Is there a way with the pre-existing Linq functions to create arbitrarily sized groups from a list of item?
For instance:
[1,2,3,4,5,6,7]
When doing something like list.Group(3) would produce an ...
0
votes
1answer
235 views
Reconstructing a chunked file in Rails
I'm trying to build an HTML5 file uploader that supports large files via chunks. I've found enough documentation online to work with the frontend side of things but I see zero info about how to ...
2
votes
2answers
774 views
Twisted Python: Max Packet Size? Flush socket?
I'm implementing a client-server solution based on Twisted for the server side and e.g. and Android phone for the client side.
Because the Andoird emulator takes no TCP Packets larger then 1500b (or ...
7
votes
4answers
2k views
Convert a Lazy ByteString to a strict ByteString
I have a function that takes a lazy ByteString, that I wish to have return lists of strict ByteStrings (the laziness should be transferred to the list type of the output).
import qualified ...


