This seems to be either a timer or timeout+retry problem. If you respond right away, it works as expected.
use strict;
use warnings;
use AnyEvent::HTTPD;
my $h = AnyEvent::HTTPD->new(port => 8123);;
my $requests = {};
my $requestCounter = 0;
$h->reg_cb (
'/test' => sub {
my ($httpd,$req) = @_;
my $request = $requestCounter;
$requestCounter++;
print "Starting response for ", $req->{method}, " request $req
+uest\n";
$req->respond(
[200, 'ok',
{ 'Content-Type' => 'text/html'
},
'<h1>Test</h1>'
]);
}
);
my $c = AnyEvent::condvar;
$c->recv();
Why do you want to wait instead of responding as soon as possible?
If you want to wait for an event to happen, the modern way is to either use Websockets or Push notifications. If you can't do either of those (please explain why), then the proper fallback to handle this would be cyclic calls from client to server to "pull" not yet handled events.
Leaving standard GET requests just "hanging" will lead to a number of different things:
- Wasted resources on the server
- Timeouts
- Modern browsers marking the connection to your server as unreliable, therefore increasing the number of parallel TCP connections they will open to try and get a result.
- Customer complaints
- Getting shouted at by your system administrator
perl -e 'use Crypt::Digest::SHA256 qw[sha256_hex]; print substr(sha256_hex("the Answer To Life, The Universe And Everything"), 6, 2), "\n";'
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.