|
|
|
|
|
by beached_whale
1284 days ago
|
|
A constrained format based on JSONL with each record being a tuple of number/string/bool/null could better defined than CSV and looks almost like it. The benefit being, almost any json library could work with it, or could be made to one line at a time and it can be parallelized as newlines only exist as the delimiter. ["hello",5,false,1,2,2.334,null] ["world",12,true,1,2,2.334,null] |
|