Changes between Version 5 and Version 6 of SerializationPerlModules

Show
Ignore:
Timestamp:
2010/02/22 10:59:31 (14 years ago)
Author:
yy
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SerializationPerlModules

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