> Maybe the user API would look something like this...
>
>    indexWriter.addLink(fromDocId, toDocId);
>    DocIdSet reader.getInboundLinks(docId);
>    DocIdSet reader.getOutboundLinks(docId);
>

To support 'typed' links, it would be nice to have:

    indexWriter.addLink("link", fromDocId, toDocId);
    DocIdSet reader.getInboundLinks(docId, "link");
    DocIdSet reader.getOutboundLinks(docId, "link");

In my app, I build this graph that has many types of links that need
to be handled differently.

> Anyone else think this might be an area worth exploring?
>

for sure!

ryan

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to