-
Notifications
You must be signed in to change notification settings - Fork 63
LZ4 compression support #219
base: master
Are you sure you want to change the base?
Conversation
src/kafunk/Native/lz4.fs
Outdated
@@ -0,0 +1,176 @@ | |||
namespace Kafunk.Native | |||
#nowarn "9" | |||
module Lz4Framing = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be internal?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
src/kafunk/Native/Loader.fs
Outdated
namespace Kafunk.Native | ||
|
||
/// Windlows pre-load dll from x86/x64 folder depending on Environment.Is64BitProcess | ||
module Loader = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can also make internal, rather than namespace
do module internal Kafunk.NativelLoader
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
RELEASE_NOTES.md
Outdated
@@ -1,3 +1,6 @@ | |||
### 0.1.17 - 12.4.2018 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's do an alpha first 0.1.17-alpha1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
Implements #129