search for: usage1

Displaying 3 results from an estimated 3 matches for "usage1".

Did you mean: usage
2009 May 21
1
32bit vs 64bit memory usage
Hi! I ran the following test on 3 different setups: #!/usr/bin/php <? $n=1024*256; $usage1=memory_get_usage(); $rusage1=memory_get_usage(true); $a=array(); for($i=0;$i<$n;$i++) $a[]=0; $usage2=memory_get_usage(); $rusage2=memory_get_usage(true); echo ($usage2-$usage1).'/'.($rusage2-$rusage1); ?> ...and I got the following results: 32bit kerne...
2007 Nov 30
4
How to originate a call from console CLI ?
...There are two ways to use this command. A call can be originated between a channel and a specific application, or between a channel and an extension in the dialplan. This is similar to call files or the manager originate action. Calls originated with this command are given a timeout of 30 seconds. Usage1: originate <tech/data> application <appname> [appdata] This will originate a call between the specified channel tech/data and the given application. Arguments to the application are optional. If the given arguments to the application include spaces, all of the arguments to the applica...
2010 Apr 08
3
dial extension and play sound file from shell on asterisk server?
I want to use Asterisk as a general message delivery system here. That is, I want to be able to have a (shell, perl, etc.) script on my Asterisk server dial an extension, wait for it to be answered and then play a sound file and then hang up, or even wait for a response or reactions to some IVR. Certainly if I had a SIP library, I could have the script simply look like a SIP extension but that