pysyncobj 0.3.9-1 source package in Ubuntu

Changelog

pysyncobj (0.3.9-1) unstable; urgency=medium

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

 -- Michael Banck <email address hidden>  Wed, 25 Aug 2021 12:25:54 +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

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pysyncobj_0.3.9-1.dsc 1.9 KiB c4a2b224c7c06b1f6bcf39ca669df473b8be885a8e49de56fe3829163adf02e5
pysyncobj_0.3.9.orig.tar.gz 62.9 KiB b6b9506b62940387c381ddc8d388bd5def776e38acf090be8d9ccec0df2d5e95
pysyncobj_0.3.9-1.debian.tar.xz 2.3 KiB 0fad2f1fdc5ea6154856647d997fb796b3c291fdd7d12ebc7bfc148ed73a26a2

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