1
vote
2answers
51 views
Python asynchronous callbacks and generators
Hello,
I'm trying to convert a synchronous library to use an internal asynchronous IO framework. I have several methods that look like this:
def foo:
....
sync_call_1() # synchronous blocking …
0
votes
1answer
12 views
Skipping data in winsock?
Is it possible to skip a portion of the incoming data on a TCP stream socket, instead of having to read it into a buffer? Preferably, I'm looking for something that also works asynchronously.
5
votes
4answers
55 views
The easiest way to perform asynchronous operations in Java web applications
I have Java servlet-based web applications. I would like to implement some operations in asynchronous manner, like for example writing to a log.
I would like to avoid JMS overhead and do something …
0
votes
2answers
59 views
Asynchronous waiting while C# function is executing
I have a blocking function that executes an asynchronous MySQL query and returns the result when it is obtained. The reason is is asynchronous is this program is not allowed to lock up during a query.
…
8
votes
3answers
141 views
C# -Four Patterns in Asynchronous execution
I heard that there are four patterns in asynchronous execution .
"There are four patterns in async delegate execution: Polling, Waiting for Completion, Completion Notification, and "Fire and Forget". …
0
votes
1answer
17 views
Tornado Web & Persistent Connections
How can I write Http server in TornadoWeb that will support persistent Connections.
I mean will be able to receive many requests and answer to them without closing connection.
How does it actually …
0
votes
0answers
31 views
Has anyone done a performance analysis of boost::asio ?
I require socket-like local IPC. I used named pipes and overlapped IO on windows and I want to rewrite the application to boost::ASIO so that it can use UNIX domain sockets as well.
I've recently …
0
votes
1answer
24 views
What is the trade of between OneWay and Async calls for broadcasting events to clients? (WCF)
I am writing a WCF (netTcpBinding planned at present) client/server application that has to support a “handful” of clients including sending events to the clients.
I do not wish the server to …
0
votes
0answers
20 views
/proc/sys/fs/aio-nr is never higher than 1024 (AIO on linux)
I'm trying to use async io on linux. As far as i know there're 3 options:
kernel calls (io_submit and friends)
libRT - uses threads in user space
libRTKAIO - wrapper of kernel calls which does not …
0
votes
1answer
36 views
Scroll to top of page after async post back
So I need to scroll to the top of the page after an async post back in an asp.net update panel.
The code I used was this:
…
4
votes
2answers
55 views
Is there any circumstance in which calling EnterWriteLock on a ReaderWriterLockSlim should enter a Read lock instead?
I have a seemingly very simple case where I'm using System.Threading.ReaderWriterLockSlim in the 3.5 version of the .NET Framework. I first declare one, as shown here:
I put a break point right …
0
votes
2answers
78 views
Tornado and Python 3.x
I really like Tornado and I would like to use it with Python 3, though it is written for Python versions 2.5 and 2.6.
Unfortunately it seems like the project's source doesn't come with a test suite. …
1
vote
4answers
40 views
C# /ASP.NET Asynchronous Thread Execution
I have some doubts on executing the following :
public class Test
{
delegate int TestDelegate(string parameter);
static void Main()
{
TestDelegate d = new TestDelegate(PrintOut);
…
1
vote
4answers
98 views
How to get the maximum outbound requests when parellellizing asynchronous calls?
Analysing the code below in action through Fiddler, I realized that using Parallel Extensions I can get at maximum 2 outbound requests:
new string[]
{
"http://stackoverflow.com",
…
8
votes
2answers
105 views
Not calling Delegate.EndInvoke can cause memory leak… a myth?
There have been a lot of discussion around this and everyone tend to agree that you should always call Delegate.EndInvoke to prevent a memory leak (even Jon Skeet said it!).
I always followed this …
