Skip to content

Instantly share code, notes, and snippets.

View tylermercier's full-sized avatar

Tyler Mercier tylermercier

View GitHub Profile
@tylermercier
tylermercier / TAO.md
Created December 6, 2019 18:06 — forked from shagunsodhani/TAO.md
Notes on TAO: Facebook’s Distributed Data Store for the Social Graph

TAO

  • Geographically distributed, read-optimized, graph data store.
  • Favors availability and efficiency over consistency.
  • Developed by and used within Facebook (social graph).
  • Link to paper.

Before TAO

  • Facebook's servers directly accessed MySQL to read/write the social graph.
@tylermercier
tylermercier / exercise.tour.go
Created February 21, 2017 17:48 — forked from zyxar/exercise.tour.go
tour.golang exercise solutions
/* Exercise: Loops and Functions #43 */
package main
import (
"fmt"
"math"
)
func Sqrt(x float64) float64 {
z := float64(2.)