aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-05-26 20:28:03 +1000
committerDavid Walter Seikel2014-05-26 20:28:03 +1000
commitcfbba8ae12306ad3d340b2d70d3668cd22189b36 (patch)
treeca271121916e68a05e2782fc62ab2ddeadccca17 /docs
parentMove the latest thoughts about directory structure into the love docs, add mo... (diff)
downloadSledjHamr-cfbba8ae12306ad3d340b2d70d3668cd22189b36.zip
SledjHamr-cfbba8ae12306ad3d340b2d70d3668cd22189b36.tar.gz
SledjHamr-cfbba8ae12306ad3d340b2d70d3668cd22189b36.tar.bz2
SledjHamr-cfbba8ae12306ad3d340b2d70d3668cd22189b36.tar.xz
Some more notes on love.
Diffstat (limited to 'docs')
-rw-r--r--docs/love.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/love.txt b/docs/love.txt
index 5e9a981..46bcc17 100644
--- a/docs/love.txt
+++ b/docs/love.txt
@@ -51,7 +51,11 @@ gets harder to use standard web servers.
51 51
52Separated is good coz Lspace might just be any ordinary web server. 52Separated is good coz Lspace might just be any ordinary web server.
53They already have mechanisms in place to serve dynamic data, and even 53They already have mechanisms in place to serve dynamic data, and even
54deal with changes to the files. 54deal with changes to the files. This is the whole point of basing the
55major asset shifting part of the protocol on the web, people can use all
56the major amounts of web infrastructure that already exists and already
57solves most of the problems that currently plague virtual worlds based
58on SL tech.
55 59
56The down side of separated is that changes might be slower propogating 60The down side of separated is that changes might be slower propogating
57to the web server, and there might be two copies of any given set of 61to the web server, and there might be two copies of any given set of
@@ -64,7 +68,7 @@ work apart. Changes happen in this shared memory, driven by the command
64pump in the love server. Lspace just needs read access, and just 68pump in the love server. Lspace just needs read access, and just
65serves the current state of the world. Love server persists to disk 69serves the current state of the world. Love server persists to disk
66when it's ready to, though the shared memory can just be memory mapped 70when it's ready to, though the shared memory can just be memory mapped
67files. 71files. This is the best of both worlds, excuse the pun.
68 72
69 73
70Thoughts about directory structure. 74Thoughts about directory structure.