|
|
|
|
|
by ahoge
4370 days ago
|
|
The SDK is shipped with a standalone version of the VM which can do I/O (via the 'dart:io' package). You can use it to write command line applications and web servers. Basically, it's like Node right off the bat. I/O performance increased drastically with 1.3. The performance is tracked over here: https://www.dartlang.org/performance/io/ 1.4 added experimental support for ServerSocket references, which allow you to share a socket across isolates (~"workers"): https://groups.google.com/a/dartlang.org/forum/#!topic/misc/... |
|