You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directmemory.apache.org by ol...@apache.org on 2012/06/16 22:21:35 UTC

svn commit: r1350994 - in /incubator/directmemory/trunk/src/site: apt/server-instance.apt.vm site.xml

Author: olamy
Date: Sat Jun 16 20:21:35 2012
New Revision: 1350994

URL: http://svn.apache.org/viewvc?rev=1350994&view=rev
Log:
add documentation on how to create a server instance

Added:
    incubator/directmemory/trunk/src/site/apt/server-instance.apt.vm   (with props)
Modified:
    incubator/directmemory/trunk/src/site/site.xml

Added: incubator/directmemory/trunk/src/site/apt/server-instance.apt.vm
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/src/site/apt/server-instance.apt.vm?rev=1350994&view=auto
==============================================================================
--- incubator/directmemory/trunk/src/site/apt/server-instance.apt.vm (added)
+++ incubator/directmemory/trunk/src/site/apt/server-instance.apt.vm Sat Jun 16 20:21:35 2012
@@ -0,0 +1,97 @@
+ ------
+ Server Instance
+ ------
+ Olivier Lamy
+ ------
+ 2012-06-17
+ ------
+
+~~ Licensed to the Apache Software Foundation (ASF) under one
+~~ or more contributor license agreements.  See the NOTICE file
+~~ distributed with this work for additional information
+~~ regarding copyright ownership.  The ASF licenses this file
+~~ to you under the Apache License, Version 2.0 (the
+~~ "License"); you may not use this file except in compliance
+~~ with the License.  You may obtain a copy of the License at
+~~
+~~   http://www.apache.org/licenses/LICENSE-2.0
+~~
+~~ Unless required by applicable law or agreed to in writing,
+~~ software distributed under the License is distributed on an
+~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+~~ KIND, either express or implied.  See the License for the
+~~ specific language governing permissions and limitations
+~~ under the License.
+
+~~ NOTE: For help with the syntax of this file, see:
+~~ http://maven.apache.org/doxia/references/apt-format.html
+
+Create your server instance
+
+  In order to create a war file to serve a DirectMemory instance, you can:
+
+  * package in a maven war project type
+
+  * create it from the archetype
+
+* Server Configuration
+
+  In the first release, the DirectMemory Server use a single instance of DirectMemory cache and configured via System Properties:
+
+  * numberOfBuffers: "directMemory.numberOfBuffers" (default: 10)
+
+  * size: "directMemory.size" (default: 1000)
+
+  * initialCapacity: "directMemory.initialCapacity" (default: 100000)
+
+  * concurrencyLevel: "directMemory.concurrencyLevel" (default: 4)
+
+
+
+* Maven War project
+
+  Add a dependency to the server core artifact:
+
++------------------------
+  <dependency>
+    <groupId>org.apache.directmemory.server</groupId>
+    <artifactId>directmemory-server</artifactId>
+    <version>${project.version}</version>
+  </dependency>
++------------------------
+
+  Map the DirectMemory servlet in your web.xml:
+
++------------------------
+  <servlet>
+    <servlet-name>DirectMemoryServlet</servlet-name>
+    <servlet-class>org.apache.directmemory.server.services.DirectMemoryServlet</servlet-class>
+    <load-on-startup>1</load-on-startup>
+  </servlet>
+
+  <servlet-mapping>
+    <servlet-name>DirectMemoryServlet</servlet-name>
+    <url-pattern>/cache/*</url-pattern>
+  </servlet-mapping>
++------------------------
+
+* Create from archetype
+
+  Use the following command line.
+
++------------------------
+mvn archetype:generate \
+   -DarchetypeGroupId=org.apache.directmemory.server \
+   -DarchetypeArtifactId=server-example-archetype \
+   -DarchetypeVersion=${project.version}
++------------------------
+
+  If you want to use a SNAPSHOT version you must add: -DarchetypeRepository=https://repository.apache.org/content/repositories/snapshots/
+
+  Now you have a simple war project configured to be a DirectMemory Server.
+
+  Try the provided sample with running mvn tomcat7:run and hit your browser to http://localhost:9091/dm/
+
+
+
+

Propchange: incubator/directmemory/trunk/src/site/apt/server-instance.apt.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/directmemory/trunk/src/site/apt/server-instance.apt.vm
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Modified: incubator/directmemory/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/directmemory/trunk/src/site/site.xml?rev=1350994&r1=1350993&r2=1350994&view=diff
==============================================================================
--- incubator/directmemory/trunk/src/site/site.xml (original)
+++ incubator/directmemory/trunk/src/site/site.xml Sat Jun 16 20:21:35 2012
@@ -49,10 +49,11 @@
     <menu name="Apache DirectMemory">
       <item name="About"                      href="index.html"/>
       <item name="Server"                     href="server.html"/>
+      <item name="Server Instance"            href="server-instance.html"/>
+      <item name="EHCahce integration"        href="ehcache-integration.html"/>
       <item name="Committer Environment"      href="committer-environment.html"/>
       <item name="JIRA report"                href="jira-report.html"/>
       <item name="Changes report"             href="changes-report.html"/>
-      <item name="EHCahce integration"        href="ehcache-integration.html"/>
     </menu>
 
     <menu ref="reports" inherit="bottom"/>