There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

NAME

DBIx::Skinny::Mixin::SearchWithPager

SYNOPSIS

package Proj::DB;
use DBIx::Skinny;
use DBIx::Skinny::Mixin modules => ['Pager', 'SearchWithPager' ];

package main;
use Proj::DB;

my ($iter, $pager) = Proj::DB->search_with_pager(bar => {
    foo => "bar",
}, {
    page => 1,
    limit => 10,
    pager_logic => "MySQLFoundRows",
});