There is quite a subtle but incredibly important difference between “Transient Linked Data Sets” and “Materialised Linked Data Sets”.
Materialised Linked Data Sets
First of all some example URI’s from Materialised Linked Data Sets:
- https://cb.semsol.org/company/opera-software
- https://dbpedia.org/resource/Opera_Software
A Materialised Linked Data Set is a Linked Data Set which is pre-generated and stored in a separate location with different URI’s.
Transient Linked Data Sets
Some example URI’s from Transient Linked Data Sets:
- https://www.crunchbase.com/company/opera-software
- https://en.wikipedia.org/wiki/Opera_Software
Transient Linked Data Sets use the same URI’s that people are used to using, and so a human user is comfortable with using the user interface that they know and love. These URI’s are put through an RDFizer (such as Virtuoso Spongers or Triplr) and the output is Linked Data generated on-the-fly. This prevents a lot of complexity when semantically tagging (e.g. “Opera Software” points directly to the Crunchbase article AND provides a dereferenceable URI for a Transient Linked Data Set), and ensures that you don’t have more than one copy of the data, and ensures that you have the most recent information.
In conclusion
I believe that Transient Linked Data Sets are a lot better, particularly with regularly edited and collaborative content such as you find on Crunchbase and WikiPedia which people have got used to. With Materialised Linked Data Sets it is usually the case that you can only read data and you have to edit the information on the original site, and then wait until the Materialised Linked Data system re-generates the data.
Example
The best way to experience these two kinds of Linked Data set is via a Linked Data Browser. For example, lets use the OpenLink Data Explorer:
- Materialised Linked Data Set, Opera Software object through OpenLink Data Explorer: https://demo.openlinksw.com/rdfbrowser2/?uri=http%3A%2F%2Fcb.semsol.org%2Fcompany%2Fopera-software (notice the use of an external URI)
- Transient Linked Data Set, Opera Software object through OpenLink Data Explorer: https://demo.openlinksw.com/rdfbrowser2/?uri=http%3A%2F%2Fwww.crunchbase.com%2Fcompany%2Fopera-software (notice the use of the original Crunchbase URI)
What’s even better is if you have the OpenLink Data Explorer extension installed, and then you can actually browse to a wikipedia or cruncbase article and go to the View menu and then “Linked Data Sources” just as you would with the Page Source (which will show the HTML and any javascript or css coded-in).
[UPDATE]
Just to clarify. Transient Linked Data Spaces use Proxy/Wrapper URI’s which are a combination of RDFiser Service URL + actual resource URI. For example, an RDFIsation using Virtuoso:
- https://demo.openlinksw.com/proxy/rdf/https://en.wikipedia.org/wiki/Opera_Software
or alternatively through Triplr:
- https://triplr.org/rdf/en.wikipedia.org/wiki/Opera_Software
[/UPDATE]