when dealing with large db_text files, pkg_memory is not suitable for
operating the database.
implementing fetch allows modules like presence & registrar & usrloc
to query large tables without constraints on pkg_memory.
creates tmp tables in shared memory for query results
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/940
-- Commit Summary --
* db_text: implement fetch and memory constraints
-- File Changes --
M …
[View More]modules/db_text/dbt_api.c (109)
M modules/db_text/dbt_api.h (6)
M modules/db_text/dbt_base.c (186)
M modules/db_text/dbt_lib.c (62)
M modules/db_text/dbt_lib.h (6)
M modules/db_text/dbt_res.c (202)
M modules/db_text/dbt_res.h (14)
M modules/db_text/dbt_tb.c (4)
M modules/db_text/dbtext.c (8)
M modules/db_text/dbtext.h (4)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/940.patchhttps://github.com/kamailio/kamailio/pull/940.diff
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/940
[View Less]
Module: kamailio
Branch: master
Commit: c0c8bfecbb418205328ac13d47ebd7a08dc25def
URL: https://github.com/kamailio/kamailio/commit/c0c8bfecbb418205328ac13d47ebd7a…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2017-01-18T14:16:18+01:00
modules: readme files regenerated - presence ...
---
Modified: src/modules/presence/README
---
Diff: https://github.com/kamailio/kamailio/commit/c0c8bfecbb418205328ac13d47ebd7a……
[View More]Patch: https://github.com/kamailio/kamailio/commit/c0c8bfecbb418205328ac13d47ebd7a…
---
diff --git a/src/modules/presence/README b/src/modules/presence/README
index 2b3454f..c8153e8 100644
--- a/src/modules/presence/README
+++ b/src/modules/presence/README
@@ -753,6 +753,12 @@ modparam("presence", "subs_remove_match", 1)
this attribute is not in the avp, the priority of the presence
document is based on timestamp, so newer documents have higher
priority.
+ * delete_subscription - integer value to give extra control of
+ deleting the subscription after processing of
+ event_route[presence:notify-reply]. If value = 1, it deletes the
+ subscription. If xavp_cfg parameter is set but this attribute is
+ not in the avp, the subscription is not deleted. this does apply
+ for code 404 and 481 where subscription is deleted.
Default value is empty (not set).
[View Less]