MicrosoftResearch / Naiad

The Naiad system provides fast incremental and iterative computation for data-parallel workloads

Home Page:http://microsoftresearch.github.io/Naiad/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

--inlineserializer is inefficient for serializing non-primitive data types

mrry opened this issue · comments

The current inline serializer uses .NET serialization for strings, collections, tuples and other framework classes. (The default serializer specializes strings and other classes, but is less efficient for simple structs.) It would be worthwhile to specialize some common cases, in advance of deciding on a more pluggable serializer.

Closing as unlikely to be fixed.