commit | 0b272e0e69ac5691bfdd1776b78d42a4e30f9039 | [log] [tgz] |
---|---|---|
author | Davide Pesavento <davidepesa@gmail.com> | Sat Sep 23 20:22:01 2023 -0400 |
committer | Davide Pesavento <davidepesa@gmail.com> | Sat Sep 23 20:22:01 2023 -0400 |
tree | d0b9f521baaa5d2d0a068fc8fd421922dd17f425 | |
parent | 9dea7a2334f4799c8d98a2a12ba576a490689801 [diff] |
build: more accurate dependencies on Boost libraries See also named-data/ndn-cxx@5686c51b87b6a642aa2dc8d93e061caebbb226cc Change-Id: I0ff9b60ae9a5e51f597d16221bbe1d97afc9704a
The PSync library implements the PSync protocol. It uses Invertible Bloom Lookup Table (IBLT), also known as Invertible Bloom Filter (IBF), to represent the state of a producer in partial sync mode and the state of a node in full sync mode. An IBF is a compact data structure where difference of two IBFs can be computed efficiently. In partial sync, PSync uses a Bloom Filter to represent the subscription list of the consumer.
PSync uses the ndn-cxx library.
To build PSync from source:
./waf configure ./waf sudo ./waf install
To build on memory constrained systems, please use ./waf -j1
instead of ./waf
. This will disable parallel compilation.
If configured with tests (./waf configure --with-tests
), the above commands will also build a suite of unit tests that can be run with ./build/unit-tests
.
Please submit any bug reports or feature requests to the PSync issue tracker.
Contributions to PSync are greatly appreciated and can be made through our Gerrit code review site. If you are new to the NDN software community, please read our Contributor's Guide to get started.
PSync is free software distributed under the GNU Lesser General Public License version 3. See COPYING.md
for details.