This gem only supports JRuby.
JRuby Mmap is a Java JRuby extension wrapper over the Java NIO memory mapping.
See also
This gem only supports JRuby.
Add this line to your application's Gemfile:
gem 'jruby-mmap'
And then execute:
$ bundle
Or install it yourself as:
$ gem install jruby-mmap
Building uses Gradle. The build process compiles the Java classes, produces a jar file and copies the jar file in the project lib/jruby-mmap
dir.
$ ./gradlew build
require "jruby-mmap"
BYTE_SIZE = 2048
FILE_PATH = "mmapfile.dat"
mmap = Mmap::ByteBuffer.new(FILE_PATH, BYTE_SIZE)
mmap.put_bytes("foobar")
mmap.close
In Ruby there's no concept of byte arrays, for IO, data is ultimately carried as strings. The Mmap::ByteBuffer
class exposes two methods for
writing bytes to the mmap byte buffer which takes a String
as argument:
Mmap::ByteBuffer#put_bytes
Mmap::ByteBuffer#put_bytes_copy
The former, put_bytes
avoids
copying the String
content by directly passing the String
underlying ByteList
to the mmap byte buffer put
method. This is
obviously more efficient but also unsafe in the sense that further mutations of the String
object will mutate that ByteList
object and
potentially create corruption. Invoking put_bytes
is typically the last operation performed on that string so in most cases it
should just be fine. If you are not sure or have doubts about the unsafe nature of put_bytes
you can use put_bytes_copy
which copies the
string data into a new byte buffer and pass it to the mmap put
method.
$ bundle install
$ bundle exec rspec
Colin Surprenant on GitHub and Twitter.
Bug reports and pull requests are welcome on GitHub at https://github.com/colinsurprenant/jruby-mmap.
JRuby Mmap is released under the Apache License, Version 2.0. See LICENSE.