Only use pure-python msgpack for socket streaming
This commit is contained in:
parent
bdb5e1597c
commit
4f729aa98f
2 changed files with 4 additions and 3 deletions
|
@ -220,7 +220,7 @@ class Config(object):
|
|||
self.parser.add_argument('--stream_downloads', help='Stream download directly to files (experimental)',
|
||||
type='bool', choices=[True, False], default=False)
|
||||
self.parser.add_argument("--msgpack_purepython", help='Use less memory, but a bit more CPU power',
|
||||
type='bool', choices=[True, False], default=True)
|
||||
type='bool', choices=[True, False], default=False)
|
||||
self.parser.add_argument("--fix_float_decimals", help='Fix content.json modification date float precision on verification',
|
||||
type='bool', choices=[True, False], default=fix_float_decimals)
|
||||
self.parser.add_argument("--db_mode", choices=["speed", "security"], default="speed")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue