search for: usage2

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

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 kernel & 32bit php - 18875368/19136512 64bit kernel & 64bit php - 35654376/35913728 64bit kernel & 32bit php - 18875368/...
2007 Nov 30
4
How to originate a call from console CLI ?
...t;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 application need to be placed in quotation marks. Usage2: originate <tech/data> extension [exten@][context] This will originate a call between the specified channel tech/data and the given extension. If no context is specified, the 'default' context will be used. If no extension is given, the 's' extension will be used." I...
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