public
Description: A wrapper around mmap
Homepage:
Clone URL: git://github.com/tenderlove/mmap.git
mmap /
name age message
file Changes Loading commit data...
file Manifest.txt
file README.rdoc
file Rakefile
file b.rb
directory ext/
directory lib/
file mmap.html
file mmap.rd
directory test/
README.rdoc

Mmap

DESCRIPTION

The Mmap class implement memory-mapped file objects

SYNOPSIS

  require 'mmap'

  mmap = Mmap.new(__FILE__)
  mmap.advise(Mmap::MADV_SEQUENTIAL)

  mmap.each do |line|
    puts line
  end

Installation

  gem install mmap

Documentation

  rake docs

Copying

This extension module is copyrighted free software by Guy Decoux

You can redistribute it and/or modify it under the same term as Ruby.

Guy Decoux <ts@moulon.inra.fr>