I dont undestand if a low value to delimited parameter can make the searching tweet stream faster can someone help me to undestand what this parameter really mean… Hope someone help me.
delimited=length does this: https://dev.twitter.com/streaming/overview/request-parameters#delimited
delimited=length
The number of bytes to read is sent in the stream before the actual message - so clients can check exactly how many bytes they need to read. Hosebird Client https://github.com/twitter/hbc does this by default.
Using delimited parameter doesn’t make a noticeable difference to processing speed - but it helps to reliably read an entire message.
thank you