commit | 0dadc57c604455623d16e27149190aae50defd42 | [log] [tgz] |
---|---|---|
author | Sonu Mishra <skmishra@cs.ucla.edu> | Mon Dec 12 23:59:41 2016 -0800 |
committer | Alex Afanasyev <aa@cs.ucla.edu> | Wed Jan 18 18:38:47 2017 -0800 |
tree | 9e8f43c69914595300b27e7ef84de4e141c17a48 | |
parent | 36eb3edb8169bdc345490128b80002b204f026e5 [diff] |
logic: Enable early refresh This commit enables the node to send a refresh interest before the previous interest expires. This eliminates the time gap between interest expiration and new interest arrival Change-Id: Ib70b4e75b8f525b4ac16a89a4646746fb6aa7282 Refs: #3883
In supporting many distributed applications, such as group text messaging, file sharing, and joint editing, a basic requirement is the efficient and robust synchronization of knowledge about the dataset such as text messages, changes to the shared folder, or document edits. This library implements ChronoSync protocol, which exploits the features of the Named Data Networking architecture to efficiently synchronize the state of a dataset among a distributed group of users. Using appropriate naming rules, ChronoSync summarizes the state of a dataset in a condensed cryptographic digest form and exchange it among the distributed parties. Differences of the dataset can be inferred from the digests and disseminated efficiently to all parties. With the complete and up-to-date knowledge of the dataset changes, applications can decide whether or when to fetch which pieces of the data.
ChronoSync uses ndn-cxx library as NDN development library.
ChronoSync is an open source project licensed under GPL 3.0 (see COPYING.md
for more detail). We highly welcome all contributions to the ChronoSync code base, provided that they can licensed under GPL 3.0+ or other compatible license.
Please submit any bugs or issues to the ChronoSync issue tracker:
Required:
To build ChronoSync from the source:
./waf configure ./waf sudo ./waf install
To build on memory constrained platform, please use ./waf -j1
instead of ./waf
. The command will disable parallel compilation.
If configured with tests: ./waf configure --with-tests
), the above commands will also generate unit tests in ./build/unit-tests