Skip to content

Commit

Permalink
Fix documentation links (#89)
Browse files Browse the repository at this point in the history
Reviewed By: codemiller

Differential Revision: D8056514

fbshipit-source-id: 16044a28a2925ed66124444bdcd78825c0dc32c6
  • Loading branch information
Simon Marlow authored and facebook-github-bot committed May 18, 2018
1 parent adb6d5c commit abf1e3f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions readme.md
Expand Up @@ -7,7 +7,8 @@ as databases or web-based services. Haxl can automatically

* batch multiple requests to the same data source,
* request data from multiple data sources concurrently,
* cache previous requests.
* cache previous requests,
* memoize computations.

Having all this handled for you behind the scenes means that your
data-fetching code can be much cleaner and clearer than it would
Expand Down Expand Up @@ -37,15 +38,15 @@ Graph API.
explains how Haxl came about at Facebook, and discusses our
particular use case.

* [An example Facebook data source](example/facebook/readme.md) walks
* [An example Facebook data source](https://github.com/facebook/Haxl/blob/master/example/facebook/readme.md) walks
through building an example data source that queries the Facebook
Graph API concurrently.

* [Fun with Haxl (part 1)](https://simonmar.github.io/posts/2015-10-20-Fun-With-Haxl-1.html)
Walks through using Haxl from scratch for a simple SQLite-backed
blog engine.

* [The N+1 Selects Problem](example/sql/readme.md) explains how Haxl
* [The N+1 Selects Problem](https://github.com/facebook/Haxl/blob/master/example/facebook/readme.md) explains how Haxl
can address a common performance problem with SQL queries by
automatically batching multiple queries into a single query,
without the programmer having to specify this behavior.
Expand Down

0 comments on commit abf1e3f

Please sign in to comment.