I am trying my best to craft my question as straightforward and clear as possible. So I will start by quoting this answer thread saying that,
If you want to read and write FILESTREAM data from Windows, click Enable FILESTREAM for file I/O streaming access.
On my machine, I have successfully set up FILESTREAM with SQL SERVER and already processed data from its table to API, but I am wondering what "Enable FILESTREAM for file I/O streaming access" can do in terms of performance optimization.
Given these settings:
The main question here is, does this introduce different access and data retrieval between the request point and file location?
What I mean is, if I can manage the FILESTREAM data in SQL Server without these mentioned settings, does this configuration offer the same control over the data that will be responsible for accessing when there is a request for the corresponding file data?
I haven't seen yet if it is useful or not, but I think that it has potential usefulness in my use case... However, my main goal here is to optimize performance without sacrificing granular control and manageability between the file data and application destination (API or something).
