Skip to content

Commit

Permalink
chore: fix readme example typo (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
liuxiaocs7 authored Oct 7, 2023
1 parent 1263e73 commit d66ffe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Logical table of edges

For maintaining a type of edges (that with the same triplet of the source label, edge label, and destination label), a logical edge table is established. And in order to support quickly creating a graph from the graph storage file, the logical edge table could maintain the topology information in a way similar to CSR/CSC (learn more about `CSR/CSC <https://en.wikipedia.org/wiki/Sparse_matrix>`_), that is, the edges are ordered by the internal vertex id of either source or destination. In this way, an offset table is required to store the start offset for each vertex's edges, and the edges with the same source/destination will be stored continuously in the logical table.

Take the logical table for "person likes person" edges as an example, the logical edge table looks like:
Take the logical table for "person knows person" edges as an example, the logical edge table looks like:

.. image:: https://alibaba.github.io/GraphAr/_images/edge_logical_table.png
:width: 650
Expand Down

0 comments on commit d66ffe4

Please sign in to comment.