This file contains 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
void main(){ | |
} |
This file contains 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
# -------------------------------------------------------------- | |
# Simplified model of Facebook's Message Inbox Search with HBase | |
# -------------------------------------------------------------- | |
# | |
# Facebook exploits versioning support in HBase with a very interesting twist: | |
# it stores message IDs for given token as “custom timestamps” in the database. | |
# | |
# The [HBase: The Definitive Guide](http://ofps.oreilly.com/titles/9781449396107/advanced.html#advsearch) book says (p. 385): | |
# | |
# > A prominent implementation of a client managed solution is the Facebook inbox search. The schema is built roughly like this: |