Larefly

Results 123 comments of Larefly

Ah thanks @OssiLehtinen I am currently looking at how to improve performance for the currently conversion methods, possible some improvements with binary and json methods 😄 . I will have...

3 different methods for parsing a string of json objects. ```r # method 1 # collapse vector of json strings and create 1 big json: method_1

```r library(microbenchmark) library(ggplot2) n

Quick benchmark with json parser and binary parser inplace ```r library(data.table) test_data

I think I have thought of away to improve the speed of the raw conversion: ```r library(data.table) N

![raw_conversion](https://user-images.githubusercontent.com/23235152/106287363-990a1000-623e-11eb-9384-a7ddaf3b6f56.png) I am really happy to see that this method of converting all to raw the splitting the raw vector later is proving to the fastest. From this `noctua` will...

Not a 100% sure what to do with data.table and bigint as I can't find a method to force integer. > Looks great after some testing too! > > It...

Are you sure `datetime'2020-01-31 51:59:25'` works from what I have read it needs to be in `TIMESTAMP '2001-08-22 03:04:05.321'` [data types](https://prestodb.io/docs/current/language/types.html#date-and-time)

This is true, however I think this bug fix should be sufficient enough for what it is try to achieve.