mirror of https://github.com/rwf2/Rocket.git
Keep core count generic in guide.
This commit is contained in:
parent
3903ffdb47
commit
0493febc58
|
@ -81,7 +81,7 @@ run`. You should see the following:
|
|||
=> address: localhost
|
||||
=> port: 8000
|
||||
=> log: normal
|
||||
=> workers: 24
|
||||
=> workers: [logical cores * 2]
|
||||
=> secret key: generated
|
||||
=> limits: forms = 32KiB
|
||||
=> keep-alive: 5s
|
||||
|
|
|
@ -162,7 +162,7 @@ Running the application, the console shows:
|
|||
=> address: localhost
|
||||
=> port: 8000
|
||||
=> log: normal
|
||||
=> workers: 24
|
||||
=> workers: [logical cores * 2]
|
||||
=> secret key: generated
|
||||
=> limits: forms = 32KiB
|
||||
=> keep-alive: 5s
|
||||
|
|
|
@ -35,7 +35,7 @@ $ sudo ROCKET_ENV=staging cargo run
|
|||
=> address: 0.0.0.0
|
||||
=> port: 8000
|
||||
=> log: normal
|
||||
=> workers: 24
|
||||
=> workers: [logical cores * 2]
|
||||
=> secret key: generated
|
||||
=> limits: forms = 32KiB
|
||||
=> keep-alive: 5s
|
||||
|
|
Loading…
Reference in New Issue