Author: sseifert
Date: Tue Sep 15 22:05:22 2015
New Revision: 1703301

URL: http://svn.apache.org/r1703301
Log:
SLING-4381/SLING-5024 nosql resource provider documentation

Modified:
    
sling/site/trunk/content/documentation/bundles/nosql-resource-providers.mdtext

Modified: 
sling/site/trunk/content/documentation/bundles/nosql-resource-providers.mdtext
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/documentation/bundles/nosql-resource-providers.mdtext?rev=1703301&r1=1703300&r2=1703301&view=diff
==============================================================================
--- 
sling/site/trunk/content/documentation/bundles/nosql-resource-providers.mdtext 
(original)
+++ 
sling/site/trunk/content/documentation/bundles/nosql-resource-providers.mdtext 
Tue Sep 15 22:05:22 2015
@@ -28,11 +28,11 @@ Tested with MongoDB Server 3.0.6 and Mon
 
 Configuration example:
 
-  
org.apache.sling.nosql.mongodb.resourceprovider.MongoDBNoSqlResourceProviderFactory.factory.config-default
-    provider.roots=["/"]
-    connectionString="localhost:27017"
-    database="sling"
-    collection="resources"
+    
org.apache.sling.nosql.mongodb.resourceprovider.MongoDBNoSqlResourceProviderFactory.factory.config-default
+        provider.roots=["/"]
+        connectionString="localhost:27017"
+        database="sling"
+        collection="resources"
 
 See Apache Felix OSGi console for detailed documentation of the parameters. 
All resource data is stored in one Collection of one MongoDB database. Each 
resource is stored as a document with the path stored in an "_id" property.
 
@@ -49,14 +49,14 @@ Tested with Couchbase Server 4.0.0-rc0 a
 
 Configuration example:
 
-  
org.apache.sling.nosql.couchbase.resourceprovider.CouchbaseNoSqlResourceProviderFactory.factory.config-default
-    provider.roots=["/"]
+    
org.apache.sling.nosql.couchbase.resourceprovider.CouchbaseNoSqlResourceProviderFactory.factory.config-default
+        provider.roots=["/"]
 
-  
org.apache.sling.nosql.couchbase.client.CouchbaseClient.factory.config-default
-    clientId="sling-resourceprovider-couchbase"
-    couchbaseHosts="localhost:8091"
-    bucketName="sling"
-    enabled=B"true"
+    
org.apache.sling.nosql.couchbase.client.CouchbaseClient.factory.config-default
+        clientId="sling-resourceprovider-couchbase"
+        couchbaseHosts="localhost:8091"
+        bucketName="sling"
+        enabled=B"true"
 
 See Apache Felix OSGi console for detailed documentation of the parameters. 
All resource data is stored in one Couchbase bucket. Each resource is stored as 
a document with the path as key.
 


Reply via email to