Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^3: AnyEvent::HTTPD -> Extra Callback after response?

by cavac (Parson)
on Jun 11, 2021 at 11:21 UTC ( [id://11133777]=note: print w/replies, xml ) Need Help??


in reply to Re^2: AnyEvent::HTTPD -> Extra Callback after response?
in thread AnyEvent::HTTPD -> Extra Callback after response?

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";'

Replies are listed 'Best First'.
Re^4: AnyEvent::HTTPD -> Extra Callback after response?
by sectokia (Pilgrim) on Jun 17, 2021 at 08:47 UTC
    Wait is just an example of async. Instead of wait, I would be doing something such as, comms request to another server to fetch resources need to form the response. Basically I have a 'sync' function (Where I respond immediately) and in this example I am trying to make a async function, where I respond to the request later when I have the data available. I am going to dig into the code to see if I can figure out why it triggers twice, for now my 'fix' is to just to store a flag for each request instance so indicate I've already handled it

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11133777]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-18 08:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found