|
|
|
|
|
by kjksf
3066 days ago
|
|
Process isolation is good for security. Parsing text data in ad-hoc, non-standardized, not documented, not defined format is really bad for security. Just spawning a process creates as many security problems as it solves. If it was done right, it would look like Chrome architecture, where untrusted, isolated processes can do dangerous work but communicate with trusted process via well defined IPC protocol. |
|
A parser service daemon, or a pool of them can be used instead, getting requests from the main application process.