-
Notifications
You must be signed in to change notification settings - Fork 350
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Serialized library #11
base: master
Are you sure you want to change the base?
Conversation
Conflicts: src/test/java/org/ahocorasick/trie/TrieTest.java
Any plans on accepting this pull request? |
+1 for serializing the library. I was planning to use it in Spark, but I cannot do that due to the lack of serialization support. |
Hi @humanzz , Cheers! |
This can be merged after the conflicts are resolved. |
@@ -60,6 +60,12 @@ | |||
<scope>test</scope> | |||
</dependency> | |||
|
|||
<dependency> | |||
<groupId>org.apache.commons</groupId> |
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.
suggestion: you can change scope of this dependency to test
@jerryye, any thoughts on the conflicts? |
Hi, I extended Serializable for a number of classes. This was needed for use on Spark.