Skip to content

Akron/mango

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mango Build Status

Pure-Perl non-blocking I/O MongoDB client, optimized for use with the Mojolicious real-time web framework.

use Mojolicious::Lite;
use Mango;
use Mango::BSON ':bson';

my $uri = 'mongodb://<user>:<pass>@<server>/<database>';
helper mango => sub { state $mango = Mango->new($uri) };

# Store and retrieve information non-blocking
get '/' => sub {
  my $self = shift;

  my $collection = $self->mango->db->collection('visitors');
  my $ip         = $self->tx->remote_address;

  # Store information about current visitor
  $collection->insert({when => bson_time, from => $ip} => sub {
    my ($collection, $err, $oid) = @_;

    return $self->render_exception if $err;

    # Retrieve information about previous visitors
    $collection->find({})->sort({when => -1})->fields({_id => 0})->all(sub {
      my ($collection, $err, $docs) = @_;

      return $self->render_exception if $err;

      # And show it to current visitor
      $self->render(json => $docs);
    });
  });
};

app->start;

Installation

All you need is a oneliner, it takes less than a minute.

$ curl -L cpanmin.us | perl - -n  Mango

We recommend the use of a Perlbrew environment.

About

Pure-Perl non-blocking I/O MongoDB client

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Perl 100.0%