Hello,
I thought to propose organizing the next IRC meeting to discuss and sync
each other about Kamailio development and surrounding ecosystem.
First date proposal is next week, Wednesday, 15:00GMT, Feb 11, 2015, on
the usual #kamailio channel at freenode.net. The date can be changed,
based on feedback from the people that want to attends.
I made a wiki page for the event at:
- http://www.kamailio.org/wiki/devel/irc-meetings/2015a
Feel free to propose topics to the agenda and/or new date.
Cheers,
Daniel
--
Daniel-Constantin Mierla
http://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda
Module: kamailio
Branch: master
Commit: 112e83c2e8b72be04f7ad5b896db0bf3bcbdbe8f
URL: https://github.com/kamailio/kamailio/commit/112e83c2e8b72be04f7ad5b896db0bf…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2015-02-11T11:50:43Z
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
---
Diff: https://github.com/kamailio/kamailio/commit/112e83c2e8b72be04f7ad5b896db0bf…
Patch: https://github.com/kamailio/kamailio/commit/112e83c2e8b72be04f7ad5b896db0bf…
---
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: master
Commit: 6940ce0e991fd5b6af9ef5822dc2b1a324319174
URL: https://github.com/kamailio/kamailio/commit/6940ce0e991fd5b6af9ef5822dc2b1a…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2015-02-11T11:19:45Z
db_mongodb: updated details in docs about the limitations
---
Diff: https://github.com/kamailio/kamailio/commit/6940ce0e991fd5b6af9ef5822dc2b1a…
Patch: https://github.com/kamailio/kamailio/commit/6940ce0e991fd5b6af9ef5822dc2b1a…
---
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>
Hello,
I noticed that several commits I did in the past hour were not notified
to sr-dev mailing list. Checking the github project setting, the web
hook callback from github failed to execute, reporting timeout.
Apparently it just started to work again.
I will try to see if there is a way to trigger those notifications.
Cheers,
Daniel
--
Daniel-Constantin Mierla
http://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda
Kamailio World Conference, May 27-29, 2015
Berlin, Germany - http://www.kamailioworld.com
Module: kamailio
Branch: master
Commit: 61d6b119398a87c4a877de3fba0dc9c6ec2830a7
URL: https://github.com/kamailio/kamailio/commit/61d6b119398a87c4a877de3fba0dc9c…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2015-02-11T13:05:41+01:00
sqlops: regenereated the readme file
---
Modified: modules/sqlops/README
---
Diff: https://github.com/kamailio/kamailio/commit/61d6b119398a87c4a877de3fba0dc9c…
Patch: https://github.com/kamailio/kamailio/commit/61d6b119398a87c4a877de3fba0dc9c…
---
diff --git a/modules/sqlops/README b/modules/sqlops/README
index 1ad1be6..ccf03b3 100644
--- a/modules/sqlops/README
+++ b/modules/sqlops/README
@@ -280,7 +280,8 @@ sql_result_free("ra");
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...).
+ update...). Note that async_workers core parameter must be set in order
+ to enable the asyncronous framework needed by this function.
* connection - the name of the connection to be used for the query
(defined via "sqlcon" parameter).
* query - SQL query string or pseudo-variables containing SQL query.