pysyncobj 0.3.11-1 source package in Ubuntu

Changelog

pysyncobj (0.3.11-1) unstable; urgency=medium

  * New upstream version.
  * debian/watch: Updated. 

 -- Michael Banck <email address hidden>  Sun, 02 Oct 2022 11:50:46 +0200

Upload details

Uploaded by:
Michael Banck
Uploaded to:
Sid
Original maintainer:
Michael Banck
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pysyncobj_0.3.11-1.dsc 1.9 KiB 637acb20301a9976779fa37eb43850bda2cdfd888858384592f432aee0699445
pysyncobj_0.3.11.orig.tar.gz 63.2 KiB f7715711bda4521a25e3b5efedc2ba296286f551059f317c488b6f2946b068bb
pysyncobj_0.3.11-1.debian.tar.xz 2.3 KiB 5b7ee5353b8b2f01ec6122e36e803e0c74abfa9e8059bb59cdb266668ee5ddd9

Available diffs

No changes file available.

Binary packages built by this source

python3-pysyncobj: RAFT-based python class replication between multiple servers

 PySyncObj is a python library for building fault-tolerant distributed systems.
 It provides the ability to replicate your application data between multiple
 servers. It has following features:
 .
  * raft protocol for leader election and log replication
  * Log compaction - it use fork for copy-on-write while serializing data on
    disk
  * Dynamic membership changes - you can do it with syncobj_admin utility or
    directly from your code
  * Zero downtime deploy - no need to stop cluster to update nodes
  * In-memory and on-disk serialization - you can use in-memory mode for small
    data and on-disk for big one
  * Encryption - you can set password and use it in external network
  * Configurable event loop - it can works in separate thread with it's own
    event loop - or you can call onTick function inside your own one
  * Convenient interface - one can easily transform arbitrary class into a
    replicated one