Proper Method of Storing Data
I have an application where we are logging several properties on different pieces of equipment. I originally set them up with value streams because its a very quick and easy way to log data. However, we now require that all of the properties be logged at precisely the same time, so that we can have a file with a row having 1 timestamp and all of the property values at that time. Should I be using a regular Stream for this so that I can control the logging? I have never used one before and it seems like the documentation talks a lot about Value Streams and very little about Streams. Thank you!

