Todos los lenguajes y frameworks
PSGI / Plack Perl
Un fragmento en Perl para PSGI / Plack que responde a las peticiones a /pixel.gif con el GIF vacío, decodificado una sola vez al arrancar.
PSGI / Plack Perl
use strict;
use warnings;
use MIME::Base64 qw(decode_base64);
my $gif = decode_base64('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
my $app = sub {
my $env = shift;
return [404, ['Content-Type' => 'text/plain'], ['Not Found']]
unless $env->{REQUEST_METHOD} eq 'GET' && $env->{PATH_INFO} eq '/pixel.gif';
return [
200,
[
'Content-Type' => 'image/gif',
'Content-Length' => length($gif),
'Cache-Control' => 'no-store',
],
[$gif],
];
};
Ejecutamos este fragmento y comparamos los bytes que devolvió.
Comprobar
curl -sI http://localhost:8080/pixel.gif