Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit 927ee44

Browse files
authored
Update README.md
1 parent d8b522f commit 927ee44

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

Documentation/Benchmark/README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,3 +217,31 @@ TOKENIZE(CSVLIST,STRCSV)
217217
Time of execution `348/300000 ms`
218218

219219

220+
## CSV2STR V081
221+
```
222+
' Benchtest
223+
' Measure parsing and LIST creation time
224+
' The list created with CSV2LIST allows for
225+
' Getting values by indexes to the list
226+
227+
CSV=LIST()
228+
DOWNLOAD("telemetry_file")
229+
PRINT "TELEMETRY SIZE: ",TSIZE();
230+
TSTART=SECONDS()
231+
WHILE TRUE
232+
233+
B=READLINE()
234+
IF B = "" THEN
235+
EXIT
236+
ELSE
237+
CLEAR(CSV)
238+
CSV=CSV2LIST(B)
239+
ENDIF
240+
241+
WEND
242+
PRINT "TIME TAKEN: ",SECONDS()-TSTART;
243+
------------------------------
244+
23:34:57.893 -> TELEMETRY SIZE: 48649
245+
23:35:07.580 -> TIME TAKEN: 9
246+
```
247+

0 commit comments

Comments
 (0)