You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ Now open the website at http://localhost:8080/hello
49
49
50
50
Server models
51
51
-------------
52
-
The four server models (*selectable via `-m <model>[,argument[,argument...]]` on the command line*) are:
52
+
The server models (*selectable via `-m <model>[,argument[,argument...]]` on the command line*) are:
53
53
54
54
***async** (*the default*): A single-threaded web server. Handlers can yield control back to the server to serve other clients during lengthy operations such as file up- and downloads.
55
55
***prefork**: Much like Apache, forks a given number of children to handle HTTP requests. Requires the `pcntl` extension. Use `prefork,children=<n>` to control the number of child processes.
@@ -254,6 +254,8 @@ class Ws extends Application {
254
254
}
255
255
```
256
256
257
+
See https://developer.mozilla.org/en-US/docs/Web/API/WebSocket
258
+
257
259
Logging
258
260
-------
259
261
By default, logging goes to standard output and will be visible in the console the `xp web` command was invoked from. It can be influenced via the command line as follows:
0 commit comments