Browse Source

fixed doc for #27

Michele Caini 8 years ago
parent
commit
d1d1b3156d
1 changed files with 6 additions and 0 deletions
  1. 6 0
      README.md

+ 6 - 0
README.md

@@ -23,6 +23,7 @@
          * [Snapshot loader](#snapshot-loader)
          * [Continuous loader](#continuous-loader)
          * [Archives](#archives)
+         * [One example to rule them all](one-example-to-rule-them-all)
    * [View: to persist or not to persist?](#view-to-persist-or-not-to-persist)
       * [Standard View](#standard-view)
          * [Single component standard view](#single-component-standard-view)
@@ -893,6 +894,8 @@ In particular:
   Every time such an operator is invoked, the archive must read the next element
   from the underlying storage and copy it in the given variable.
 
+#### One example to rule them all
+
 `EnTT` comes with some examples (actually some tests) that show how to integrate
 a well known library for serialization as an archive. It uses
 [`Cereal C++`](https://uscilab.github.io/cereal/) under the hood, mainly
@@ -901,6 +904,9 @@ because I wanted to learn how it works at the time I was writing the code.
 The code is not production-ready and it isn't neither the only nor (probably)
 the best way to do it. However, feel free to use it at your own risk.
 
+The basic idea is to store everything in a group of queues in memory, then bring
+everything back to the registry with different loaders.
+
 ## View: to persist or not to persist?
 
 First of all, it is worth answering an obvious question: why views?<br/>