Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkPflug committed Mar 20, 2024
2 parents d68c2ff + 4e38537 commit 07c4c6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/Csv/Options.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ __BufferSize__
The size of the internal buffer to allocate for parsing records.
This size is fixed and will not grow. This is the primary constraint on the data reader as all records *must* fit in the buffer or a parse exception will be thrown.

The default buffer size is 64kb, which provides a good balance between memory and performance. A smaller buffer requires more chatty IO operations, and test to be slower.
The default buffer size is 64kb, which provides a good balance between memory and performance. A smaller buffer requires more chatty IO operations, and tends to be slower.

The fact that the buffer is not allowed to grow can be seen as a security feature which prevents malicious input from consuming unbounded memory. But, it also means that a larger buffer may be needed provided for some valid inputs.

Expand Down
4 changes: 2 additions & 2 deletions docs/Data/Sylvan.Data.Releases.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Sylvan.Data Release Notes

_0.2.13_
- Data binder now throws an exception is *no* properties get bound in `BindMode.Any`, now at least one must get bound.
- Data binder now honors `DataMeberAttribute.IsRequired` property. If unbound, binder creation will throw an `UnboundMemberException` exception.
- Data binder now throws an exception if *no* properties get bound in `BindMode.Any`, now at least one must get bound.
- Data binder now honors `DataMemberAttribute.IsRequired` property. If unbound, binder creation will throw an `UnboundMemberException` exception.
- `AsDataReader` extension method now uses DataMemberAttribute.Name as the header string if present, otherwise the property name is used.

_0.2.12_
Expand Down

0 comments on commit 07c4c6a

Please sign in to comment.