You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2013/08/09 00:02:39 UTC

svn commit: r1512066 - in /directory/site/trunk/content/mavibot: five-minutes-tutorial.mdtext index.mdtext news.mdtext

Author: elecharny
Date: Thu Aug  8 22:02:39 2013
New Revision: 1512066

URL: http://svn.apache.org/r1512066
Log:
Fixed some typos, langage and added some links (tahnks to OLE review)

Modified:
    directory/site/trunk/content/mavibot/five-minutes-tutorial.mdtext
    directory/site/trunk/content/mavibot/index.mdtext
    directory/site/trunk/content/mavibot/news.mdtext

Modified: directory/site/trunk/content/mavibot/five-minutes-tutorial.mdtext
URL: http://svn.apache.org/viewvc/directory/site/trunk/content/mavibot/five-minutes-tutorial.mdtext?rev=1512066&r1=1512065&r2=1512066&view=diff
==============================================================================
--- directory/site/trunk/content/mavibot/five-minutes-tutorial.mdtext (original)
+++ directory/site/trunk/content/mavibot/five-minutes-tutorial.mdtext Thu Aug  8 22:02:39 2013
@@ -94,7 +94,7 @@ You will find a detailed description of 
 
 ## Values
 
-A _BTree_ can stor single value or mmultiple values, associated to a key. The _AllowDuplicates_ flags is set to true if you want to store multiple values associated with one key.
+A _BTree_ can stor single value or multiple values, associated to a key. The _AllowDuplicates_ flags is set to true if you want to store multiple values associated with one key.
 
 The default _BTree_ wll only accept single value.
 
@@ -102,10 +102,10 @@ The default _BTree_ wll only accept sing
 
 Your _BTree_ can store a new revision for each new modification done on it. Those revisions are kept until no operation are holding them. The _BTree_ operations can all be done using a specific revision number.
 
-Once the revision is not anymore in use, the associated pages are likely to be reclaimed.
+Once the revision is not longer in use, the associated pages are likely to be reclaimed.
 
 ## Cache
 
-We don't implement a cache : we depends on Java for that. The _BTree_ is stored in memory, using class instances, and are eventually loaded from disk if they are not present in memory. We use _WeakReference_ to hold all the pages.
+We don't implement a cache : we depends on Java for that. The _BTree_ is stored in memory, using class instances, and are eventually loaded from disk if they are not present in memory. We use [_WeakReference_](http://docs.oracle.com/javase/7/docs/api/java/lang/ref/WeakReference.html) to hold all the pages.
 
-As the _Java_ garbage collector already keep in memory the most frequently used data, it's likely that the important pages - ie, the top of each _BTree_ - will be kept in memory.
\ No newline at end of file
+As the _Java_ garbage collector already keeps in memory the most frequently used data, it's likely that the important pages - ie, the top of each _BTree_ - will be kept in memory.
\ No newline at end of file

Modified: directory/site/trunk/content/mavibot/index.mdtext
URL: http://svn.apache.org/viewvc/directory/site/trunk/content/mavibot/index.mdtext?rev=1512066&r1=1512065&r2=1512066&view=diff
==============================================================================
--- directory/site/trunk/content/mavibot/index.mdtext (original)
+++ directory/site/trunk/content/mavibot/index.mdtext Thu Aug  8 22:02:39 2013
@@ -18,5 +18,6 @@ Notice: Licensed to the Apache Software 
 
 # Apache Mavibot™
 
-**Mavibot** is a **MVCC BTree** implementation in Java.
+**Mavibot** is a **MVCC BTree** in Java. It is expected to be a replacement for **JDBM** we are using at _Directory_, but can fits any other project in the need of a Java _MVCC BTree_ implementation.
+
 

Modified: directory/site/trunk/content/mavibot/news.mdtext
URL: http://svn.apache.org/viewvc/directory/site/trunk/content/mavibot/news.mdtext?rev=1512066&r1=1512065&r2=1512066&view=diff
==============================================================================
--- directory/site/trunk/content/mavibot/news.mdtext (original)
+++ directory/site/trunk/content/mavibot/news.mdtext Thu Aug  8 22:02:39 2013
@@ -3,6 +3,4 @@
 
 We are pround to announce that after less than one year of development in Apache Directory Labs, the Mavibot project has been accepted as a Apache Directory subproject.
 
-Mavibot is a **MVCC BTree** in Java. It is expected to be a replacement for **JDBM** we are using at _Directory_, but can fits any other project in the need of a Java _MVCC BTree_ implementation.
-
 The project is still in its infancy, and anyone willing to participate in the effort is very welcome !