• Stars
    star
    126
  • Rank 283,532 (Top 6 %)
  • Language
    Go
  • License
    Other
  • Created almost 11 years ago
  • Updated 6 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Git mirror of launchpad.net/gommap with additional patches.

gommap

This is a git mirror of launchpad.net/gommap. The master branch includes this patch, which adds support for darwin64 (MacOS X), as well as Windows support by @matt-farmer.

Read more

API documentation

Notes on Windows Support by @matt-farmer

Gommap is a dependency within the liftbridge streaming engine which we are using, and we need to be able to run the streaming server on windows.

The Gommap windows implementation was done by Qing Miao from the NSIP team, but we drew heavily on work from others which are referenced below to make sure they get the credit they deserve - it's also ended up being a bit of a sample of known golang memory maps that work cross-platform, so putting it here in case others find it useful.

The state of many implementations of the mem-maps is unclear in terms of support, how active the repos are etc. Of course this is a low-level piece of any system so probably once people have one working they don't do any changes until an OS or processor architecture change forces the need.

We created this fork really because we're prepared to support the implementation for now, and we're passing the changes back up to the original repo so they can accept them if they want to.

The windows version is designed to require no changes to existing code; certainly this is the case for our liftbridge requirement, the liftbridge server now builds and runs fine on windows, and it's been subjected to high volume tests that would force the flushing of the map without incident.

Limitations

  1. We have only tested this on 64-bit Windows
  2. We have not been able to implement the (mmap)Advise() or (mmap)IsResident() functions - later versions of windows may have apis that can help to support these (from the documentation we've been able to find), but go can only distinguish os and architecture and those 'advanced' features are not generically available to 'windows'. Please raise an issue if this is a show-stopper.

Prior Art

Hereโ€™s a list of the alternative go mem-map packages that we looked at for help and/or borrowed from directly, and which anyone else may find helpful if you need cross-platform memory-mapping in go:

https://github.com/edsrzf/mmap-go This one has a very similar interface to the original labix library, but does seem to provide support for windows and various linux distros and Mac.

https://github.com/golang/exp/tree/master/mmap Package from the golang devs for mmap. Not immediately useful for our requirement as it only offers a reader interface, but does have nice use of the syscall package in the windows golang file that might be useful if we end up having to create our own library completely from scratch.

https://github.com/justmao945/tama/tree/master/mmap This one uses a full go File paradigm rather than a byte array.

https://github.com/influxdata/platform/tree/master/pkg/mmap This one is used by influxdb, so we know it works on multiple platforms (we also use influxdb as part of the same project). Difference here is that the API is much simpler, just open - returns a byte array, and then close!

https://github.com/go-util/mmap An interesting one that is actively developed. Uses a mixture of file/byte array paradigms, so may operate on Windows using a file-based approach, with lower-level calls for unix systems; offers reader and writer interfaces if required.

https://github.com/AlexStocks/goext/tree/master/syscall Another active repo, with a mmap for unix and windows, offers the simple interface for byte array which should be compatible with the simple calls used by liftbridge.

More Repositories

1

siri_says

Siri biz-nass all up in your Ruby
Ruby
64
star
2

rendezvous

Golang implementation of rendezvous hashing (highest random weight hashing)
Go
37
star
3

jsonget

Command-line tool for extracting values out of JSON
Go
9
star
4

wikirace

wikirace is a basic Wikirace solver in Go: https://en.wikipedia.org/wiki/Wikipedia:Wikirace
Go
6
star
5

expornote

Export Evernote .enex files to raw attachments and Markdown
Go
4
star
6

rapper_lite

Simplified static asset packager.
Ruby
3
star
7

scenario

Basic spec scenarios for RSpec. (dormant)
Ruby
3
star
8

rapper

Static asset packager and compressor with versioning.
Ruby
2
star
9

jog

Simple command-line tool for logging what you've been working on.
Ruby
2
star
10

rooby

Powerful full-stack metaframework for vertical-integration of multi-component intelligence hierarchy instances.
Ruby
2
star
11

gem_template

My sensible defaults for new gems.
Ruby
1
star
12

SimplerFlow.safariextension

Simple Safari extension that cleans up the Flowdock inbox a bit.
1
star
13

octopress

My personal site.
JavaScript
1
star
14

CrampChat

Ruby
1
star
15

tcup

Simple HTTPS TCP-to-UDP proxy with token authentication
Go
1
star
16

splashy

Select objects from arbitrary buckets matching any ol' percentage distribution.
Ruby
1
star
17

cml-tmbundle

CML TextMate bundle
1
star
18

Rickshaw

MooTools-based client-side MVC framework with Handlebars templates.
CoffeeScript
1
star
19

bitrate_forcer

Force upconvert MP3s to get iTunes Match to match them.
Ruby
1
star
20

cf-exception-notifier-js

JavaScript stacktraces delivered hot and fresh to your door.
1
star
21

ruby-ext-js

Ultra-basic classes for working with Ext.js requests and translating them to DataMapper / Mongood query opts.
Ruby
1
star
22

nanoc_starter_set

Sensible defaults and helpers for nanoc sites
Ruby
1
star
23

lua_playground

Lua
1
star
24

emberjs-rails

Ruby
1
star
25

CoffeeScript-Jasmine.tmbundle

Snippets and extra highlighting for writing Jasmine tests with CoffeeScript
1
star
26

coffeeshop

Sinatra app to quickly serve up CoffeeScript as JavaScript
Ruby
1
star
27

docduck

REST API documentation builder
Ruby
1
star