diff options
author | David Walter Seikel | 2014-05-26 20:28:03 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-05-26 20:28:03 +1000 |
commit | cfbba8ae12306ad3d340b2d70d3668cd22189b36 (patch) | |
tree | ca271121916e68a05e2782fc62ab2ddeadccca17 /docs | |
parent | Move the latest thoughts about directory structure into the love docs, add mo... (diff) | |
download | SledjHamr-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.txt | 8 |
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 | ||
52 | Separated is good coz Lspace might just be any ordinary web server. | 52 | Separated is good coz Lspace might just be any ordinary web server. |
53 | They already have mechanisms in place to serve dynamic data, and even | 53 | They already have mechanisms in place to serve dynamic data, and even |
54 | deal with changes to the files. | 54 | deal with changes to the files. This is the whole point of basing the |
55 | major asset shifting part of the protocol on the web, people can use all | ||
56 | the major amounts of web infrastructure that already exists and already | ||
57 | solves most of the problems that currently plague virtual worlds based | ||
58 | on SL tech. | ||
55 | 59 | ||
56 | The down side of separated is that changes might be slower propogating | 60 | The down side of separated is that changes might be slower propogating |
57 | to the web server, and there might be two copies of any given set of | 61 | to 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 | |||
64 | pump in the love server. Lspace just needs read access, and just | 68 | pump in the love server. Lspace just needs read access, and just |
65 | serves the current state of the world. Love server persists to disk | 69 | serves the current state of the world. Love server persists to disk |
66 | when it's ready to, though the shared memory can just be memory mapped | 70 | when it's ready to, though the shared memory can just be memory mapped |
67 | files. | 71 | files. This is the best of both worlds, excuse the pun. |
68 | 72 | ||
69 | 73 | ||
70 | Thoughts about directory structure. | 74 | Thoughts about directory structure. |