The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

DBIx::Sharding::Strategy::Simple - Key based sharding strategy.

SYNOPSIS

  use DBIx::Sharding;

  DBIx::Sharding->load('/path/to/config.yaml');

  my $odd_number = 7;
  my $conn_info  = DBIx::Sharding->connect_info('MASTER', +{ strategy => 'Remainder', key => $odd_number });

DESCRIPTION

DBIx::Sharding::Strategy::Simple is key based sharding strategy depends on remainder divided key by number of nodes.

AUTHOR

Kosuke Arisawa <arisawa@gmail.com>

SEE ALSO

DBIx::Sharding
DBI

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.