nonblocking
Browser-side node.js or non-blocking javascript?
I am fascinated with non-blocking architectures.While I haven\'t used Node.js, I have a grasp of it conceptually.Also, I have been developing an event-driven web app so I have a fundamental understand[详细]
2023-04-12 19:53 分类:问答Deserialize big data JSON from a REST request into objects without locking up the browser?
In a rich internet app: User requests a resource Server responds with a huge JSON response Client (running in browser) must process the JSON converting it to the many objects which make up the appli[详细]
2023-04-12 17:41 分类:问答multithreading with non-blocking sockets
I am trying to implement a TCP Server in Java using nio. Its 开发者_如何学编程simply using the Selector\'s select method to get the ready keys. And then processing those keys if they are acceptable, r[详细]
2023-04-12 08:54 分类:问答Making a non blocking HTTP request in a Rails app
Is anyone aware of a way to make outgoing non blocking HTTP requests from within Rails?I 开发者_如何学JAVAwill need the response body eventually and am trying to avoid bringing up new frameworks to ke[详细]
2023-04-11 22:03 分类:问答Trying to walk a dropbox folder tree with node.js
I am trying to read dropbox metadata through their API, and write the url paths for ALL folders, subfolders and files into an array. Dropbox basically returns me a metadata response object showing all[详细]
2023-04-08 19:07 分类:问答Returning from a function while continuing to execute
I am working on a Django application where I would like to populate several fields within my model when an object is first created. Currently I am able to do this in the save() routine of my 开发者_开[详细]
2023-04-06 18:59 分类:问答ruby creating processes and reading output
I want to create multiple processes (each with cmd + arguments). I need the pid of the created process so I can kill it if needed.[详细]
2023-04-05 13:28 分类:问答Non-Blocking socket and poll() quirks in proxy
Thanks to the help here i got a mostly working socks4 proxy based on poll(). I am using this programm to learn C and socket programming. This programm is still lacking send() checks for partial writes[详细]
2023-04-01 21:23 分类:问答Non-Blocking socket and poll() quirks in proxy - newbie
I am a newbie dabbling in C and my little project is to write a simple SOCKS4 proxy. Thanks to the help here i got so far to use non-blocking sockets and poll() for my routine. However at this point i[详细]
2023-04-01 01:46 分类:问答How to set position properly in NIO.2's AsynchronousFileChannel.write(ByteBuffer src, long position)?
My Java-program does a multithreaded XSLT Transformation and writes the resul开发者_JAVA百科ts to a file. To avoid the IO bottleneck I am experimenting with the new AsynchronousFileChannel.[详细]
2023-03-30 00:05 分类:问答