8000 fixing docs · ChatScript/ChatScript@3426321 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3426321

Browse files
committed
fixing docs
1 parent 2658c57 commit 3426321

File tree

9 files changed

+108
-120
lines changed

9 files changed

+108
-120
lines changed

HTMLDOCUMENTATION/ESOTERIC-CHATSCRIPT/ChatScript-PostgreSQL.html renamed to HTMLDOCUMENTATION/ESOTERIC-CHATSCRIPT/ChatScript-Database_Access.html

Lines changed: 98 additions & 21 deletions
Large diffs are not rendered by default.

HTMLDOCUMENTATION/ESOTERIC-CHATSCRIPT/ChatScript-MongoDB.html

Lines changed: 0 additions & 53 deletions
This file was deleted.

HTMLDOCUMENTATION/ESOTERIC-CHATSCRIPT/ChatScript-MySQL.html

Lines changed: 0 additions & 36 deletions
This file was deleted.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

WIKI/ESOTERIC-CHATSCRIPT/ChatScript-Database_Access.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ 8000 server as a hot backup and transfer users to it while redeploying the primary se
1111
The solution to this (and the ability to scale CS with an arbitrary number of servers) is to have some kind of networked file server.
1212

1313
CS directly supports use of Mongo, Postgres, MySQL,and MsSQL databases as file servers.
14-
Instead of writing the userss state record to the local file system,
14+
Instead of writing the users's state record to the local file system,
1515
it writes it as a record in the database.
1616
That record will be overwritten each volley with the changed state.
1717
There is no accumulation of prior state data. Nor are user logs ever written there.
@@ -37,10 +37,10 @@ use chatscript;
3737
CREATE TABLE userfiles (userid varchar(100) PRIMARY KEY, file MEDIUMBLOB, when DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP)
3838
```
3939

40-
The table name userfiles and the field names are fixed. ChatScript assumes them.
41-
userid - a limit of 64 is more than enough
42-
file: in our world we are going to have less than 500K bytes of data
43-
when CS never sends or uses this value. It is there to allow an external program to query the database and delete old records since our users do not continue forever with Pearl.
40+
The table name "userfiles" and the field names are fixed. ChatScript assumes them.
41+
userid: a limit of 64 is more than enough
42+
file: in our world we are going to have less than 500K bytes of data
43+
when: CS never sends or uses this value. It is there to allow an external program to query the database and delete old records since our users do not continue forever with Pearl.
4444

4545
An optional key is `appendport` which takes no value. It means to add the current CS port as a
4646
suffix onto the db name. So
@@ -109,10 +109,10 @@ use chatscript;
109109
CREATE TABLE userfiles (userid varchar(100) PRIMARY KEY, [file] VARBINARY(max), stored DATETIME DEFAULT CURRENT_TIMESTAMP)
110110
```
111111

112-
The table name userfiles and the field names are fixed. ChatScript assumes them.
113-
userid - a limit of 64 is more than enough
114-
file: in our world we are going to have less than 500K bytes of data
115-
stored CS never sends or uses this value. It is there to allow an external program to query the database and delete old records since our users do not continue forever with Pearl.
112+
The table name "userfiles" and the field names are fixed. ChatScript assumes them.
113+
userid: a limit of 64 is more than enough
114+
file: in our world we are going to have less than 500K bytes of data
115+
stored: CS never sends or uses this value. It is there to allow an external program to query the database and delete old records since our users do not continue forever with Pearl.
116116

117117
### MsSQL Termination:
118118
If at any time a call to utilize MsSQL fails, the CS server will abort itself. If you have an

WIKI/once.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11

2-
pandoc ESOTERIC-CHATSCRIPT/ChatScript-Engine.md -s -o ../PDFDOCUMENTATION/ESOTERIC-CHATSCRIPT/ChatScript-Engine.pdf
2+
pandoc ESOTERIC-CHATSCRIPT/ChatScript-Database_Access.md -s -o ../PDFDOCUMENTATION/ESOTERIC-CHATSCRIPT/ChatScript-Database_Access.pdf
33
pause

0 commit comments

Comments
 (0)
0