pysyncobj 0.3.10-1 source package in Ubuntu

Changelog

pysyncobj (0.3.10-1) unstable; urgency=medium

  * New upstream version.

 -- Michael Banck <email address hidden>  Sun, 13 Feb 2022 14:27:13 +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

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pysyncobj_0.3.10-1.dsc 1.9 KiB 06f71893f707f0fcbe82cbe5e59ab73777578832c6f8c4bd695f016382f96e09
pysyncobj_0.3.10.orig.tar.gz 62.9 KiB cf9116727f51e93d3bfd538495304c2a3fa862efc07d182192e957783160560f
pysyncobj_0.3.10-1.debian.tar.xz 2.3 KiB f25d5cb28738ff7e6136962a5394ec84a4be919d1d46e694b11dfb8c63833b5e

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