From bdc00a4212c6dd5481a864f5e01c58be401150ff Mon Sep 17 00:00:00 2001 From: Alan Bernstein Date: Fri, 11 May 2018 14:52:59 -0500 Subject: [PATCH] Add a few links --- docs/data-model.md | 2 +- docs/examples.md | 2 +- docs/getting-started.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/data-model.md b/docs/data-model.md index 315d05a65..5f0f9438f 100644 --- a/docs/data-model.md +++ b/docs/data-model.md @@ -20,7 +20,7 @@ nav = [ The central component of Pilosa's data model is a boolean matrix. Each cell in the matrix is a single bit - if the bit is set, it indicates that a relationship exists between that particular row and column. -Rows and columns can represent anything (they could even represent the same set of things). Pilosa can associate arbitrary key/value pairs (referred to as attributes) to rows and columns, but queries and storage are optimized around the core matrix. +Rows and columns can represent anything (they could even represent the same set of things - a [bigraph](https://en.wikipedia.org/wiki/Bigraph)). Pilosa can associate arbitrary key/value pairs (referred to as attributes) to rows and columns, but queries and storage are optimized around the core matrix. Pilosa lays out data first in rows, so queries which get all the set bits in one or many rows, or compute a combining operation on multiple rows such as Intersect or Union are the fastest. Pilosa categorizes rows into different *frames* and quickly retrieve the top rows in a frame sorted by the number of bits set in each row. diff --git a/docs/examples.md b/docs/examples.md index 35b9d94af..03e202ade 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -163,7 +163,7 @@ durm := pdk.CustomMapper{ #### Import process -After designing this schema and mapping, we capture it in a JSON definition file that can be read by the PDK import tool. Running `pdk taxi` runs the import based on the information in this file. See [PDK](../pdk/) for more details on this process. +After designing this schema and mapping, we capture it in a JSON definition file that can be read by the PDK import tool. Running `pdk taxi` runs the import based on the information in this file. For more details, see the [PDK](../pdk/) section, or check out the [code](https://github.com/pilosa/pdk/tree/master/usecase/taxi) itself. #### Queries diff --git a/docs/getting-started.md b/docs/getting-started.md index 358e6ee9f..c5383e81c 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -20,7 +20,7 @@ Any HTTP tool can be used to interact with the Pilosa server. The examples in th ### Starting Pilosa Follow the steps in the [Install](../installation/) document to install Pilosa. -Execute the following in a terminal to run Pilosa with the default configuration (Pilosa will be available at `localhost:10101`): +Execute the following in a terminal to run Pilosa with the default configuration (Pilosa will be available at [localhost:10101](http://localhost:10101)): ``` pilosa server ```