Module: kamailio
Branch: 4.2
Commit: 2ee8e8d0a0808fde86941712bc7fbebcac103dcc
URL: https://github.com/kamailio/kamailio/commit/2ee8e8d0a0808fde86941712bc7fbeb…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2015-02-12T09:52:27+01:00
sqlops: added note to sql_async_query() about core async_workers
- the parameter must be set to enable the async framework used by this
function
(cherry picked from commit 112e83c2e8b72be04f7ad5b896db0bf3bcbdbe8f)
---
Modified: modules/sqlops/doc/sqlops_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/2ee8e8d0a0808fde86941712bc7fbeb…
Patch: https://github.com/kamailio/kamailio/commit/2ee8e8d0a0808fde86941712bc7fbeb…
---
diff --git a/modules/sqlops/doc/sqlops_admin.xml b/modules/sqlops/doc/sqlops_admin.xml
index ec61cac..bb9011b 100644
--- a/modules/sqlops/doc/sqlops_admin.xml
+++ b/modules/sqlops/doc/sqlops_admin.xml
@@ -385,7 +385,9 @@ sql_result_free("ra");
driver module (e.g., db_mysql). The query is executed in another
process and result is not available back to config, thus it should
be used only for sql statements that don't return values (e.g.,
- insert, delete, update...).
+ insert, delete, update...). Note that async_workers core parameter
+ must be set in order to enable the asyncronous framework
+ needed by this function.
</para>
<itemizedlist>
<listitem>
Module: kamailio
Branch: 4.2
Commit: 921ed59eb8f766a9dc9c87138c3b6ba04d4c1bfa
URL: https://github.com/kamailio/kamailio/commit/921ed59eb8f766a9dc9c87138c3b6ba…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2015-02-12T09:51:59+01:00
db_mongodb: updated details in docs about the limitations
(cherry picked from commit 6940ce0e991fd5b6af9ef5822dc2b1a324319174)
---
Modified: modules/db_mongodb/doc/db_mongodb_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/921ed59eb8f766a9dc9c87138c3b6ba…
Patch: https://github.com/kamailio/kamailio/commit/921ed59eb8f766a9dc9c87138c3b6ba…
---
diff --git a/modules/db_mongodb/doc/db_mongodb_admin.xml b/modules/db_mongodb/doc/db_mongodb_admin.xml
index 5971e7d..ee34cb2 100644
--- a/modules/db_mongodb/doc/db_mongodb_admin.xml
+++ b/modules/db_mongodb/doc/db_mongodb_admin.xml
@@ -34,8 +34,12 @@
<itemizedlist>
<listitem>
<para>
- This module has implemented INSERT, UPDATE and DELETE. Query
- (SELECT) is not yet storing the result.
+ This module has implemented the equivalent operations for INSERT,
+ UPDATE, DELETE and SELECT. The match condition (WHERE clause)
+ works with the operators: equal, not equal, greater than, less than,
+ equal or greater than, equal or less than. Raw query is not
+ implemented inside this module, use ndb_mongodb for sending any
+ kind of command to a MongoDB server.
</para>
</listitem>
</itemizedlist>