The schemaless binary serialization wiki docs: http://orientdb.com/docs/last/orientdb.wiki/Record-Schemaless-Binary-Serialization.html have an error in documenting how to serialize a LINK. It states:
LINK The link is stored as two 64 bit integer +--------------+--------------+ |cluster:64int | record:64Int | +--------------+--------------+ *cluster* orientdb cluster id *record* orientdb record id But after implementing it tonight in the budding Go driver (ogonori), I see that these are varint encoded integers, So I believe the docs should state: LINK The link is stored as two varints +---------------+---------------+ |cluster:varint | record:varint | +---------------+---------------+ *cluster* orientdb cluster id *record* orientdb record id -Michael -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
