Skip to content

Instantly share code, notes, and snippets.

@rcrowley
Created June 12, 2009 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rcrowley/128985 to your computer and use it in GitHub Desktop.
Save rcrowley/128985 to your computer and use it in GitHub Desktop.
// Pageview/click analytics in Cassandra?
{
"pageviews": { // Column family
"cookie": "OH HAI",
"url": "/foo/bar",
"layout": 47,
"ip": "1.2.3.4"
// And we get timestamps for free!
},
"clicks": { // Column family
"cookie": "OH HAI",
"target": "http://interiorcrocodilealligator.com/",
"layout": 47,
"ip": "5.6.7.8",
"x": 120,
"y": 375
// And we get timestamps for free!
}
// Et cetera
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment