Results of 1 - 10 of about 26 for our (0.001 sec.)
- Architecture Overview 13902
- « Driver Architecture and Internals Connections » PHP Manual Driver Architecture and Internals A
...
ion will effectively form the glue between PHP and our system libraries ( » libmongoc and » libbson ). Th ...
and PHP libraries, respectively, we hope to reduce our maintainence burden and allow for faster iteration ...
direction. Although we implemented GridFS in C for our old mongo driver, it is actually quite a high-leve ...
and writing to GridFS' collections – and thanks to our low level extensions, we will – shifting this API ...
-
https://man.plustar.jp/php/mongodb.overview.html
- [similar]
- SoapServer の持続モードを設定する 10811
- « SoapServer::setObject SoapFault » PHP Manual SoapServer SoapServer の持続モードを設定する Soap
...
hp class MyFirstPersistentSoapServer { private $resource ; // (Such as PDO, mysqli, etc..) public $myvar1 ...
struct () { $this -> __wakeup (); // We're calling our wakeup to handle starting our resource } public fu ...
nction __wakeup () { $this -> resource = CodeToStartOurResourceUp (); } public function ...
__sleep () { // We make sure to leave out $resource here, so our session data remains persistent // ...
-
https://man.plustar.jp/php/soapserver.setpersistence.html
- [similar]
- Gets the number of configured nameservers 10497
- « EventDnsBase::__construct EventDnsBase::loadHosts » PHP Manual EventDnsBase Gets the number of
...
rvers). This is useful for double-checking whether our calls to the various nameserver configuration func ...
sBase , the , of , countNameservers , パラメータ , our , calls , various ...
-
https://man.plustar.jp/php/eventdnsbase.countnameservers.html
- [similar]
- Run a single task and return a result [deprecated] 10034
- « GearmanClient::data GearmanClient::doBackground » PHP Manual GearmanClient Run a single task a
...
n <?php # Client code echo "Starting\n" ; # Create our client object. $gmclient = new GearmanClient (); # ...
result \n" ; ?> <?php echo "Starting\n" ; # Create our worker object. $gmworker = new GearmanWorker (); # ...
n on the running job. <?php # Client code # Create our client object. $gmclient = new GearmanClient (); # ...
> <?php # Worker code echo "Starting\n" ; # Create our worker object. $gmworker = new GearmanWorker (); # ...
-
https://man.plustar.jp/php/gearmanclient.do.html
- [similar]
- Run a single task and return a result 10034
- « GearmanClient::doLowBackground GearmanClient::doStatus » PHP Manual GearmanClient Run a single
...
> <?php # Client code echo "Starting\n" ; # Create our client object. $gmclient = new GearmanClient (); # ...
result \n" ; ?> <?php echo "Starting\n" ; # Create our worker object. $gmworker = new GearmanWorker (); # ...
n on the running job. <?php # Client code # Create our client object. $gmclient = new GearmanClient (); # ...
> <?php # Worker code echo "Starting\n" ; # Create our worker object. $gmworker = new GearmanWorker (); # ...
-
https://man.plustar.jp/php/gearmanclient.donormal.html
- [similar]
- サーバーとの接続をチェックし、もし切断されている場合は再接続を試みる 9720
- « mysqli::options mysqli::poll » PHP Manual mysqli サーバーとの接続をチェックし、もし切断されてい
...
を確認します */ if ( $mysqli -> ping ()) { printf ( "Our connection is ok!\n" ); } else { printf ( "Error: ...
認します */ if ( mysqli_ping ( $link )) { printf ( "Our connection is ok!\n" ); } else { printf ( "Error: ...
close ( $link ); ?> 上の例の出力は以下となります。 Our connection is ok! 関連キーワード: mysqli , 接続 , ...
-
https://man.plustar.jp/php/mysqli.ping.html
- [similar]
- Wait for activity from one of the job servers 9108
- « GearmanWorker::unregisterAll GearmanWorker::work » PHP Manual GearmanWorker Wait for activity
...
n-blocking mode <?php echo "Starting\n" ; # Create our worker object $worker = new GearmanWorker (); # Ma ...
calhost, port 4730) $worker -> addServer (); # Add our reverse function $worker -> addFunction ( 'reverse ...
-
https://man.plustar.jp/php/gearmanworker.wait.html
- [similar]
- Basic Gearman client and worker, background 8480
- « Basic usage Basic Gearman client and worker, submitting tasks » PHP Manual 例 Basic Gearman cl
...
client never receives the results). <?php # create our client object $gmclient = new GearmanClient (); # ...
"done!\n" ; ?> <?php echo "Starting\n" ; # Create our worker object. $gmworker = new GearmanWorker (); # ...
-
https://man.plustar.jp/php/gearman.examples-reverse-bg.html
- [similar]
- Basic usage 8480
- « 例 Basic Gearman client and worker, background » PHP Manual 例 Basic usage Basic usage 例1 Bas
...
The job is performed synchronously. <?php # Create our client object. $gmclient = new GearmanClient (); # ...
N_SUCCESS ); ?> <?php echo "Starting\n" ; # Create our worker object. $gmworker = new GearmanWorker (); # ...
-
https://man.plustar.jp/php/gearman.examples-reverse.html
- [similar]
- Add a background task to be run in parallel 7868
- « GearmanClient::addTask GearmanClient::addTaskHigh » PHP Manual GearmanClient Add a background
...
client output. <?php # The client script # create our gearman client $gmc = new GearmanClient (); # add ...
p # The worker script echo "Starting\n" ; # Create our worker object. $gmworker = new GearmanWorker (); # ...
-
https://man.plustar.jp/php/gearmanclient.addtaskbackground.html
- [similar]