summaryrefslogtreecommitdiff
path: root/examples/cxx/tree/README
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-10-13 11:29:26 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-10-13 11:29:26 +0200
commitafebd79d44b75aed3b38e867c65330ba80ddc0ee (patch)
tree7fc95caae113884defce1ac712f93327f58f72e0 /examples/cxx/tree/README
parent0b21758fcd9f3127e30a1c9172c4c27b46a2b957 (diff)
Extended the streaming example
It now shows how to perform stream-oriented, partially in-memory XML processing using the C++/Tree mapping.
Diffstat (limited to 'examples/cxx/tree/README')
-rw-r--r--examples/cxx/tree/README11
1 files changed, 6 insertions, 5 deletions
diff --git a/examples/cxx/tree/README b/examples/cxx/tree/README
index 16e5ce3..b6993d9 100644
--- a/examples/cxx/tree/README
+++ b/examples/cxx/tree/README
@@ -55,11 +55,12 @@ custom/
overview of each example in this directory.
streaming
- Shows how to create an XML document by performing multiple
- serializations of its smaller parts. This can be useful when the
- document is too large to fit into memory or when the other end
- needs to start processing without waiting for the whole document
- (streaming).
+ Shows how to perform stream-oriented, partially in-memory XML
+ processing using the C++/Tree mapping. With the partially in-memory
+ parsing and serialization only a part of the object model is in
+ memory at any given time. With this approach we can process parts
+ of the document as they become available as well as handle documents
+ that are too large to fit into memory.
binary/
A collection of examples that show how to serialize the object model