If you don't want to fill the contact form on the VoltDB download page, here's the direct link -- https://downloads.voltdb.com/technologies/server/voltdb-latest.tar.gz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"bytes" | |
"strconv" | |
) | |
// toRedisProto converts a Redis command, represented by a slice of | |
// bytes, where each element of the slice represents a chunk of the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
netstat -ntu | awk ' $4 ~ /^[0-9]/ {print $4}' | sort | uniq -c | sort -n | |
# Rehashed from http://www.commandlinefu.com/commands/view/8767/netstat-with-group-by-ip-adress |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Kailash Nadh (http://kailashnadh.name) | |
localStorageDB | |
September 2011 | |
A simple database layer for localStorage | |
License : MIT License | |
*/ |
NewerOlder