Skip to content

Instantly share code, notes, and snippets.

@number5
number5 / 0-readme.md
Last active December 10, 2015 11:59 — forked from burke/0-readme.md

NOT WORKING DO NOT USE THIS ruby-1.9.3-p362 cumulative performance patch for rbenv

This installs a patched ruby 1.9.3-p362 with various performance improvements and a backported COW-friendly GC, all courtesy of funny-falcon.

Requirements

You will also need a C Compiler. If you're on Linux, you probably already have one or know how to install one. On OS X, you should install XCode, and brew install autoconf using homebrew.

set-option -g prefix `
unbind-key C-b
bind-key ` last-window
bind '~' split-window "exec htop"
bind C-h split-window -h
bind C-v split-window -v
bind C-p paste-buffer
bind-key -n C-left prev
bind-key -n C-right next
# In-memory Cassandra-ish thingy... useful for unit tests. Maybe useful for other
# stuff too? No support for SuperColumns, but that should be easy enough to add.
import bisect
import copy
from cassandra.ttypes import NotFoundException, Column, ColumnPath, ColumnOrSuperColumn
class SSTable(object):