Changes between Version 5 and Version 6 of SerializationPerlModules
- Timestamp:
- 2010/02/22 10:59:31 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SerializationPerlModules
v5 v6 7 7 * [http://search.cpan.org/~gwilliams/RDF-Trine-0.117/ RDF::Trine] 8 8 * [http://search.cpan.org/~djbeckett/Redland-1.0.5.4/ RDF::Redland] 9 * [http://search.cpan.org/~dpokorny/RDF-Core-0.51/ RDF::Core] 9 10 10 11 RDF::Simple is literally "simple", so IMO it is useful only for understanding how serialization works, but not for a practical use. 11 12 As the module page says, it doesn't care the node type. 12 13 You cannot declare whether a node is a URI or literal. 14 On the other hand, a serialized output (RDF/XML) is better organized than the other. 13 15 14 RDF::Trine doesn't provide a sufficient document, and I have difficulty in making a code. 16 RDF::Trine doesn't provide a sufficient document, and I have a bit difficulty in making a code. 17 A serialized output (RDF/XML) has some redundancies. 18 This module groups statements that share a same subject, and embraces them by "<rdf:Description>" tags. 19 It's OK, but declaration of user-defined namespaces is not at the first "<rdf:RDF>" tag, but at each rdf-description tag. 20 Also, nest level is one. 21 Even so, it's more compact than that of REF::Redland. 15 22 16 23 RDF::Redland uses a compilation (i.e., not a pure Perl module), and you may have troubles on some platforms / environments.