Result for 29628463DD70C416C079B31B58A6DADA9F67B621

Query result

Key Value
FileName./usr/share/doc/packages/perl-Mojo-mysql/examples/blog/templates/posts/index.html.ep
FileSize217
MD5B1859529FE67F3F13392B70C7C60B378
SHA-129628463DD70C416C079B31B58A6DADA9F67B621
SHA-256F37BB910632331C648F89312DA878789993D53FF848618077AF32A9C13722207
SSDEEP3:gJE4PCFyXfzl2WW3PdJbgLONgWH1ssK02WpPbZQLR7qjv/0xvAFEFzOUyKWGithQ:g3Pzl2WsgWisrX59QdWT/EAKtqm6K
TLSHT192D02209C1AC15817412317FCAF1E01EED6A881EFDC00982AF8C3280AF980B16DA6B80
hashlookup:parent-total2
hashlookup:trust60

Network graph view

Parents (Total: 2)

The searched file hash is included in 2 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
MD518526F1B893AFAF01BCD0231F577CCCF
PackageArchnoarch
PackageDescriptionMojo::mysql is a tiny wrapper around DBD::mysql and DBD::MariaDB that makes at http://www.mysql.org and at https://mariadb.org/ a lot of fun to use with the at http://mojolicio.us real-time web framework. The two DBD drivers are compatible with both MySQL and MariaDB, but they offer different options. DBD::MariaDB should have better unicode support though and might become the default in the future. Database and handles are cached automatically, so they can be reused transparently to increase performance. And you can handle connection timeouts gracefully by holding on to them only for short amounts of time. use Mojolicious::Lite; use Mojo::mysql; helper mysql => sub { state $mysql = Mojo::mysql->strict_mode('mysql://sri:s3cret@localhost/db') }; get '/' => sub { my $c = shift; my $db = $c->mysql->db; $c->render(json => $db->query('select now() as time')->hash); }; app->start; While all I/O operations are performed blocking, you can wait for long running queries asynchronously, allowing the Mojo::IOLoop event loop to perform other tasks in the meantime. Since database connections usually have a very low latency, this often results in very good performance. Every database connection can only handle one active query at a time, this includes asynchronous ones. So if you start more than one, they will be put on a waiting list and performed sequentially. To perform multiple queries concurrently, you have to use multiple connections. my $db = $mysql->db; $db->query('select sleep(5)' => sub {...}); $db->query('select sleep(5)' => sub {...}); $mysql->db->query('select sleep(5)' => sub {...}); $mysql->db->query('select sleep(5)' => sub {...}); All cached database handles will be reset automatically if a new process has been forked, this allows multiple processes to share the same Mojo::mysql object safely.
PackageNameperl-Mojo-mysql
PackageRelease1.2
PackageVersion1.25
SHA-1C4E9A26872AE0BACD632F57C4766C19D54D379FB
SHA-256CD4C3F710396FCADA6A28B269965D6272E09D6379D6B218F755FB7FE051AB6D2
Key Value
FileSize38166
MD5F61DD22D5CE9F07CC644D136C383279C
PackageDescriptionmodule to make PostgreSQL fun to use with Mojolicious Mojo::Pg is a wrapper around DBD::Pg that makes PostgreSQL a lot of fun to use with the Mojolicious real-time web framework. . Features of note include URL-based database connections, automatic transaction rollback support, database migrations written in plain SQL, and asynchronous triggers. . Support for Mojo::Pg is present in the Minion job queue for Mojolicious.
PackageMaintainerDebian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
PackageNamelibmojo-pg-perl
PackageSectionperl
PackageVersion2.35-1
SHA-1B5B2603F595C821C4E8733C571F94C305589F87B
SHA-256076288D97D1F590EB946D15576BDB2CB3C88A839052E60676A90E579750AA280