mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-15 10:30:40 +01:00
The zstd library provides better and faster compression than zlib. This patch integrates zstd as a dynamically-loadable functionality. As such, no further dependencies need to be added to the rsyslog base package. Due to the increased performance, usage of zstd is highly recommended for high-volume use cases. This patch also refactor zlib compression in order to unify handling in both compression cases.
5 lines
155 B
Bash
Executable File
5 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
export USE_VALGRIND="YES"
|
|
export NUMMESSAGES=10000 # valgrind is pretty slow, so we need to user lower nbr of msgs
|
|
source ${srcdir:-.}/zstd.sh
|