-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from vividsnow/master
merged perl Plack from vividsnow/master
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# plackup -s Starman --workers N -E deployment app.psgi | ||
# -or- | ||
# plackup -s Twiggy::Prefork --max_workers N -E deployment app.psgi | ||
use v5.16; | ||
use Plack::Builder; | ||
use Plack::Request; | ||
use JSON::XS 'encode_json'; | ||
use DBI; | ||
|
||
my $dbh = DBI->connect('dbi:mysql:dbname=test', 'root') || die $!; | ||
my $sth = $dbh->prepare('SELECT randomnumber FROM world WHERE id = ?'); | ||
my $header = ['Content-Type' => 'application/json']; | ||
|
||
builder { | ||
mount '/json' => sub { [ 200, $header, [ encode_json({ message => 'Hello, World!' })] ] }, | ||
mount '/dbi' => sub { [ 200, $header, [ encode_json([ | ||
map { id => $_->[0] + 0, randomnumber => $_->[1] }, | ||
grep exists $_->[1], | ||
map [$_, $sth->execute($_) && $sth->fetchrow_array], | ||
map int rand 10000 + 1, | ||
1..Plack::Request->new(shift)->param('queries')//1 | ||
]) ] ] } | ||
}; |