commit | 62f0800a61f49c7dd698e142e046831dbc88c5b9 | [log] [tgz] |
---|---|---|
author | Junxiao Shi <git@mail1.yoursunny.com> | Sun Jan 07 04:00:52 2024 +0000 |
committer | Junxiao Shi <git@mail1.yoursunny.com> | Thu Jan 18 18:17:58 2024 +0000 |
tree | f53f2d1d6f5485c09c3bb33a91141cf4eccb0aa4 | |
parent | c052d89b7ab435a06c5ec92157a4863576a05eeb [diff] |
full-producer: do not append hash of IBF to data name refs #5066 Change-Id: Ie74a9512e6795a02028c82c55484c009d3a3a11f
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.