hi
I've used this library on my dot net core solution.
when I test in window os, this library was not slow.
but in linux os, PostPointsAsync was so slow.
I checked why. and I find InfluxValueField.ToString is so slow.
if InfluxValueField is double or float, you use String.Format method.
but when I tested in linux os, this code so slow. so I changed this code just toString.
after changing, PostPointsAsync was not slow in linux os.
I have some question. why use String.Format method?
my development environment is
window : window 10
linux : centos 7
check this logic please.

hi
I've used this library on my dot net core solution.
when I test in window os, this library was not slow.
but in linux os, PostPointsAsync was so slow.
I checked why. and I find InfluxValueField.ToString is so slow.
if InfluxValueField is double or float, you use String.Format method.
but when I tested in linux os, this code so slow. so I changed this code just toString.
after changing, PostPointsAsync was not slow in linux os.
I have some question. why use String.Format method?
my development environment is
window : window 10
linux : centos 7
check this logic please.