https://github.com/thinkaurelius/titan
Revision 6fc60a147dc8a6b6eb21af4ab5efdd1078be635a authored by Matthias Broecheler on 16 April 2015, 23:36:16 UTC, committed by Matthias Broecheler on 16 April 2015, 23:36:16 UTC
1 parent 52edbb1
Raw File
Tip revision: 6fc60a147dc8a6b6eb21af4ab5efdd1078be635a authored by Matthias Broecheler on 16 April 2015, 23:36:16 UTC
Removed Kryo serializer from the internal serialization engine and extended Titan's serializer to handle all serialization needs. This gives us greater flexibility and more control over the serializer which should make it easier to maintain backwards compatibility. However, this also constrains what kinds of data types Titan supports which might actually end up being a good thing for the user. Fixes #751. Fixes #955.
Tip revision: 6fc60a1
.gitignore
*.log
target/
.idea/
*.iml
*.DS_Store
/bin/
/conf/
/db/
/ext/
/lib/
/log/
# When executing tests in alphabetical order, Maven generates temporary
# files with names like this:
#
#  .surefire-0320969CE4BEF3CC28F07EE3E21C2DCF89CB569C
#
# These files appear alongside pom.xml files.  The files are just lists
# of test names and don't contain any important information.
/titan-*/.surefire-*
# Eclipse junk; leading slash makes patterns non-recursive
# Note that * also can't match slashes
/.settings/
/.project
/.classpath
/titan-*/.classpath
/titan-*/.project
/titan-*/.settings/
/titan-*/titan-*/.classpath
/titan-*/titan-*/.project
/titan-*/titan-*/.settings/
# End of Eclipse junk
# HBase testing stuff
titan-hbase/logs
titan-hbase/src/test/titan-hbase-test-data/*
titan-hbase/src/test/titan-zookeeper-test/*
# Backup files created by `mvn versions:update-child-modules`
# http://mojo.codehaus.org/versions-maven-plugin/update-child-modules-mojo.html
titan-*/pom.xml.versionsBackup
# JUnitBenchmarks output
/titan-*/jub.*.xml
# .deb/.rpm packaging folders
/debian/
/redhat/
/pkgcommon/
# Emacs file backups
*~
back to top