mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 18:41:57 +00:00
Pipelining of requests to improve throughput -- new parameter max-pipelined-requests (default 20) for maximum number of requests to batch at one time Deletion of counter keys when zero -- new parameter delete-when-zero (default false) to enable. This will cause a redis eval to execute to decrement counters instead of DECR. Detection of negative limit counters -- Self healing of negative counters (due to key eviction, etc)
18 lines
543 B
Makefile
18 lines
543 B
Makefile
include $(top_srcdir)/build/modmake.rulesam
|
|
MODNAME=mod_hiredis
|
|
|
|
if HAVE_HIREDIS
|
|
|
|
mod_LTLIBRARIES = mod_hiredis.la
|
|
mod_hiredis_la_SOURCES = mod_hiredis.c hiredis_utils.c hiredis_profile.c hiredis_pipeline.c
|
|
mod_hiredis_la_CFLAGS = $(AM_CFLAGS) $(HIREDIS_CFLAGS)
|
|
mod_hiredis_la_LIBADD = $(switch_builddir)/libfreeswitch.la
|
|
mod_hiredis_la_LDFLAGS = -avoid-version -module -no-undefined -shared $(HIREDIS_LIBS) $(SWITCH_AM_LDFLAGS)
|
|
|
|
else
|
|
install: error
|
|
all: error
|
|
error:
|
|
$(error You must install libhiredis-dev to build this module)
|
|
endif
|