<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/modplua/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/modplua/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 09 Mar 2012 08:00:44 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/modplua/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Home modified by Daniel Gruno</title><link>https://sourceforge.net/p/modplua/wiki/Home/</link><description>&lt;pre&gt;--- v73 
+++ v74 
@@ -53,7 +53,7 @@
 
 ## Sites using mod_pLua (or derivatives thereof)
 http://www.projectit.org - a playground for project management  
-http://www.ningyou-project.org - an animelist'ish web system written in Lua
+http://www.ningyou-project.org - an animelist'ish web system written in Lua  
 http://www.sourceforge-heartbeats.info - a timeline annotation service for SourceForge projects
 ##Authors
 [[project_admins]]
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Daniel Gruno</dc:creator><pubDate>Fri, 09 Mar 2012 08:00:44 -0000</pubDate><guid>https://sourceforge.net1d9243e4154a62bbd14430b64e704478d34a9db1</guid></item><item><title>WikiPage Home modified by Daniel Gruno</title><link>https://sourceforge.net/p/modplua/wiki/Home/</link><description>&lt;pre&gt;--- v72 
+++ v73 
@@ -54,6 +54,7 @@
 ## Sites using mod_pLua (or derivatives thereof)
 http://www.projectit.org - a playground for project management  
 http://www.ningyou-project.org - an animelist'ish web system written in Lua
+http://www.sourceforge-heartbeats.info - a timeline annotation service for SourceForge projects
 ##Authors
 [[project_admins]]
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Daniel Gruno</dc:creator><pubDate>Fri, 09 Mar 2012 08:00:28 -0000</pubDate><guid>https://sourceforge.net9eb3034fa0c97ceb825ef7090fd0d186333f6820</guid></item><item><title>WikiPage Home modified by Daniel Gruno</title><link>https://sourceforge.net/p/modplua/wiki/Home/</link><description>&lt;pre&gt;--- v71 
+++ v72 
@@ -52,7 +52,7 @@
 * [mod_pLua logo]
 
 ## Sites using mod_pLua (or derivatives thereof)
-http://www.projectit.org - a playground for project management
+http://www.projectit.org - a playground for project management  
 http://www.ningyou-project.org - an animelist'ish web system written in Lua
 ##Authors
 [[project_admins]]
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Daniel Gruno</dc:creator><pubDate>Mon, 20 Feb 2012 18:59:46 -0000</pubDate><guid>https://sourceforge.netdbfc4c20476bb68416fd8b779a49ea34bff0c8c5</guid></item><item><title>WikiPage Home modified by Daniel Gruno</title><link>https://sourceforge.net/p/modplua/wiki/Home/</link><description>&lt;pre&gt;--- v70 
+++ v71 
@@ -53,7 +53,7 @@
 
 ## Sites using mod_pLua (or derivatives thereof)
 http://www.projectit.org - a playground for project management
-
+http://www.ningyou-project.org - an animelist'ish web system written in Lua
 ##Authors
 [[project_admins]]
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Daniel Gruno</dc:creator><pubDate>Mon, 20 Feb 2012 18:59:19 -0000</pubDate><guid>https://sourceforge.net399306815e87db671cf456a01e2f276cdf2cd0c2</guid></item><item><title>WikiPage Home modified by Daniel Gruno</title><link>https://sourceforge.net/p/modplua/wiki/Home/</link><description>&lt;pre&gt;--- v69 
+++ v70 
@@ -31,7 +31,7 @@
 _(This example can be achieved using the [pLuaRaw](https://sourceforge.net/p/modplua/wiki/Setting%20up%20mod_pLua/) directive)_
 
 ## Additional features
-mod_pLua [precompiles all scripts and caches the compiled binary code](https://sourceforge.net/p/modplua/wiki/How%20mod_pLua%20works/) so that each new call to the same file will be lightning fast (on average 2.6 times as fast as PHP).  
+mod_pLua [precompiles all scripts and caches the compiled binary code](https://sourceforge.net/p/modplua/wiki/How%20mod_pLua%20works/) so that each new call to the same file will be lightning fast, allowing you to serve hundreds of thousands of requests per minute on any modern server. 
 
 Mod_pLua supports both the traditional Lua interpreter as well as LuaJIT for both Windows and UNIX platforms.  
 If your web server supports it, mod_pLua also utilizes [APR_DBD](http://people.apache.org/~niq/dbd.html) and [mod_dbd](http://httpd.apache.org/docs/current/mod/mod_dbd.html) to handle databases through the [dbopen()](https://sourceforge.net/p/modplua/wiki/New%20functions%20in%20pLua/) Lua function. And last, but not least, mod_pLua is of course thread-safe.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Daniel Gruno</dc:creator><pubDate>Sat, 18 Feb 2012 07:12:00 -0000</pubDate><guid>https://sourceforge.net6e95210b294e4c88c2f18f3e6223dc8a3fc0078d</guid></item><item><title>WikiPage Home modified by Daniel Gruno</title><link>https://sourceforge.net/p/modplua/wiki/Home/</link><description>&lt;pre&gt;--- v68 
+++ v69 
@@ -8,25 +8,25 @@
 &lt;html&gt;
     &lt;body&gt;
         &lt;?
-          get = parseGet();
+          get = parseGet(); --# Parse any GET data passed on to us.
           name = get['name'] or "unknown person";
           x = (x or 0) + 1; --# Increment a persistent, global variable x.
         ?&gt;
         &lt;h1&gt;Hello, &lt;?=name?&gt;!&lt;/h1&gt;
         &lt;?if (x &gt; 3) then?&gt;
             X is &gt; 3!
         &lt;?end?&gt;
     &lt;/body&gt;
 &lt;/html&gt;
 ~~~~~~
 &lt;br/&gt;
 #### Plain Lua scripting:
 ~~~~~~
 :::perl
 setContentType("text/html");
 local vars = parseGet();
-local user = vars["name"];
-print("Hello, " .. user);
+local user = vars["name"] or "unknown person";
+print("Hello, ", user);
 ~~~~~~
 _(This example can be achieved using the [pLuaRaw](https://sourceforge.net/p/modplua/wiki/Setting%20up%20mod_pLua/) directive)_
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Daniel Gruno</dc:creator><pubDate>Fri, 17 Feb 2012 14:33:51 -0000</pubDate><guid>https://sourceforge.net3bee2dc2f9b825fb641eb84457dd85cb1dd22385</guid></item><item><title>WikiPage Home modified by Daniel Gruno</title><link>https://sourceforge.net/p/modplua/wiki/Home/</link><description>&lt;pre&gt;--- v67 
+++ v68 
@@ -7,19 +7,15 @@
 :::php
 &lt;html&gt;
     &lt;body&gt;
-    &lt;? get = parseGet();
-       name = get['name'] or "unknown person"; ?&gt;
+        &lt;?
+          get = parseGet();
+          name = get['name'] or "unknown person";
+          x = (x or 0) + 1; --# Increment a persistent, global variable x.
+        ?&gt;
         &lt;h1&gt;Hello, &lt;?=name?&gt;!&lt;/h1&gt;
-            &lt;? 
-              x = (x or 0) + 1;
-              if (x &gt; 3) then
-            ?&gt;
-                x is greater than &lt;i&gt;three!&lt;/i&gt;&lt;br/&gt;
-                x is in fact: &lt;?=x or "I don't know x"?&gt;
-            &lt;? else ?&gt;
-                x is three or less :(
-            &lt;? end ?&gt;
-        &lt;blink&gt;Let's have some blinking text here!&lt;/blink&gt;
+        &lt;?if (x &gt; 3) then?&gt;
+            X is &gt; 3!
+        &lt;?end?&gt;
     &lt;/body&gt;
 &lt;/html&gt;
 ~~~~~~
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Daniel Gruno</dc:creator><pubDate>Fri, 17 Feb 2012 14:31:17 -0000</pubDate><guid>https://sourceforge.netade15ef769673b73b33f484f7a60014040d6bc0a</guid></item><item><title>WikiPage Home modified by Daniel Gruno</title><link>https://sourceforge.net/p/modplua/wiki/Home/</link><description>&lt;pre&gt;--- v66 
+++ v67 
@@ -19,6 +19,7 @@
             &lt;? else ?&gt;
                 x is three or less :(
             &lt;? end ?&gt;
+        &lt;blink&gt;Let's have some blinking text here!&lt;/blink&gt;
     &lt;/body&gt;
 &lt;/html&gt;
 ~~~~~~
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Daniel Gruno</dc:creator><pubDate>Fri, 17 Feb 2012 14:20:11 -0000</pubDate><guid>https://sourceforge.netd2e5fa915fbe8d0e3f18e2f00ab9e9bdedb447c9</guid></item><item><title>WikiPage Home modified by Daniel Gruno</title><link>https://sourceforge.net/p/modplua/wiki/Home/</link><description>&lt;pre&gt;--- v65 
+++ v66 
@@ -37,19 +37,20 @@
 mod_pLua [precompiles all scripts and caches the compiled binary code](https://sourceforge.net/p/modplua/wiki/How%20mod_pLua%20works/) so that each new call to the same file will be lightning fast (on average 2.6 times as fast as PHP).  
 
 Mod_pLua supports both the traditional Lua interpreter as well as LuaJIT for both Windows and UNIX platforms.  
-If your web server supports it, mod_pLua also utilizes APR_DBD to handle databases through the [dbopen()](https://sourceforge.net/p/modplua/wiki/New%20functions%20in%20pLua/) Lua function. And last, but not least, mod_pLua is of course thread-safe.
-
+If your web server supports it, mod_pLua also utilizes [APR_DBD](http://people.apache.org/~niq/dbd.html) and [mod_dbd](http://httpd.apache.org/docs/current/mod/mod_dbd.html) to handle databases through the [dbopen()](https://sourceforge.net/p/modplua/wiki/New%20functions%20in%20pLua/) Lua function. And last, but not least, mod_pLua is of course thread-safe.
+
 ## Download
 [[download_button]]  
 
    &lt;br/&gt;
 
 ##See also
 You may want to look at these pages before you start:
 
 * [mod_pLua examples]
 * [Setting up mod_pLua]
 * [New functions in pLua]
+* [Database connectivity]
 * [How mod_pLua works]
 * [mod_pLua logo]
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Daniel Gruno</dc:creator><pubDate>Fri, 17 Feb 2012 09:39:49 -0000</pubDate><guid>https://sourceforge.net0dfdeeb17fe9b1554b3c05b50adc2bec20ed422e</guid></item><item><title>WikiPage Home modified by Daniel Gruno</title><link>https://sourceforge.net/p/modplua/wiki/Home/</link><description>&lt;pre&gt;--- v64 
+++ v65 
@@ -31,13 +31,13 @@
 local user = vars["name"];
 print("Hello, " .. user);
 ~~~~~~
-_(This example can be achieved using the pLuaRaw directive)_
-
+_(This example can be achieved using the [pLuaRaw](https://sourceforge.net/p/modplua/wiki/Setting%20up%20mod_pLua/) directive)_
+
 ## Additional features
-mod_pLua precompiles all scripts and caches the compiled binary code so that each new call to the same file will be lightning fast (on average 2.6 times as fast as PHP).  
+mod_pLua [precompiles all scripts and caches the compiled binary code](https://sourceforge.net/p/modplua/wiki/How%20mod_pLua%20works/) so that each new call to the same file will be lightning fast (on average 2.6 times as fast as PHP).  
 
 Mod_pLua supports both the traditional Lua interpreter as well as LuaJIT for both Windows and UNIX platforms.  
-If your web server supports it, mod_pLua also utilizes APR_DBD to handle databases through the dbopen() Lua function. And last, but not least, mod_pLua is of course thread-safe.
+If your web server supports it, mod_pLua also utilizes APR_DBD to handle databases through the [dbopen()](https://sourceforge.net/p/modplua/wiki/New%20functions%20in%20pLua/) Lua function. And last, but not least, mod_pLua is of course thread-safe.
 
 ## Download
 [[download_button]]  
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Daniel Gruno</dc:creator><pubDate>Mon, 13 Feb 2012 20:57:28 -0000</pubDate><guid>https://sourceforge.netb462c6b0a83574285dd2f1e05ddd23b700148813</guid></item></channel></rss>