Result for 1CC627A8AA50CCF403CF8D2B4CF80A4321F83C8F

Query result

Key Value
FileName./usr/share/man/man3/Mojo::mysql::Transaction.3pm.gz
FileSize1436
MD536F9BD44A58F2C5303BC57AABB4D4892
SHA-11CC627A8AA50CCF403CF8D2B4CF80A4321F83C8F
SHA-2560510BF28C6C519E6049366296E677D546D38A1C91975A003F184B9842C4348B2
SSDEEP24:XBPmG3EDyXUCpYvIweQ8xk8VfKkKuDNJonRDAmXNTdl9yohdu2KETKGJCNpWmTZ5:XBL3EDyXURvIVS6KQN2nRcuT1hduMTKt
TLSHT15921194E61AB2273CEF25306C77319BB90269080286D560718FCE702947ABB418EC793
hashlookup:parent-total1
hashlookup:trust55

Network graph view

Parents (Total: 1)

The searched file hash is included in 1 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