pysyncobj 0.3.7-2 source package in Ubuntu

Changelog

pysyncobj (0.3.7-2) unstable; urgency=medium

  * No change source-only upload. 

 -- Michael Banck <email address hidden>  Fri, 06 Nov 2020 16:36:17 +0100

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

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pysyncobj_0.3.7-2.dsc 1.9 KiB ebcd06b75ad894e9c714197f814452a627ecfb5847b00d52a51fc6626145773f
pysyncobj_0.3.7.orig.tar.gz 61.4 KiB acbfd22ab316e4e4d5ada3ec2e88673ae474ca965e8505c62ec9c8737b7ecd7b
pysyncobj_0.3.7-2.debian.tar.xz 2.2 KiB 432fa9c5a1d5cb3f87994c077449fcab2870ab822be2b484fa9c55f15d7a29f9

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