forked from mdcallag/linkbench
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add in storage implementations for graph nodes
Summary: NodeStore is separate interface to LinkStore for now, so that we don't have to immediately add new methods to all LinkStore implementations. Have not yet integrated NodeStore into actual workload. In-memory and my-sql implementations for node storage Basic unit tests for node storage Fixed sql inject bugs, handling of binary data Fix binary data handling, regression tests included Test Plan: ant test Also test loading and requesting data with mysql Reviewers: dhruba Reviewed By: dhruba CC: vamsi Differential Revision: https://reviews.facebook.net/D4725
- Loading branch information
Tim Armstrong
committed
Aug 18, 2012
1 parent
9259d55
commit a08fb64
Showing
15 changed files
with
815 additions
and
77 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.facebook.LinkBench; | ||
|
||
/** | ||
* An abstract class for storing both nodes and edges | ||
* @author tarmstrong | ||
*/ | ||
public abstract class GraphStore extends LinkStore implements NodeStore { | ||
|
||
} |
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
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
Oops, something went wrong.