PECL-Is there a website specifically downloaded for PHP extensions under Windows?

Source: Internet
Author: User
For example, there is a website called msdn.itellyou, specifically download software under Windows.
Is there a web site dedicated to downloading various extensions of PHP under Windows?

    • A lot of pecl are not available on the Windows version (or I didn't find it?) What I need to download now is memcached);

    • Compiling yourself is too troublesome, and is likely to solve all kinds of troublesome problems;

PS: Today's company reorganization, self-owned Mac can not network, seemingly short-term is also not likely to give us a Mac, (the company expressly forbid to bring equipment and re-install system ...) I'm not going to jump off the job for the time being, so ask.

Today I saw a lot of people talking about using vagrant with Docker. What I'm trying to say is that you're not using it in depth at all.
How slow is disk sharing with virtual machine scenarios under Windows, you know? Soft link Solutions How painful it is to have more eggs, you know? How long does it take to refresh a page with a slightly heavier frame?

Another: Three years ago I used vagrant, due to win under various problems, finally switched to Mac, I still use vagrant. Recommended vagrant people, probably have not been exposed to Windows under those egg pain.

Reply content:

For example, there is a website called msdn.itellyou, specifically download software under Windows.
Is there a web site dedicated to downloading various extensions of PHP under Windows?

    • A lot of pecl are not available on the Windows version (or I didn't find it?) What I need to download now is memcached);

    • Compiling yourself is too troublesome, and is likely to solve all kinds of troublesome problems;

PS: Today's company reorganization, self-owned Mac can not network, seemingly short-term is also not likely to give us a Mac, (the company expressly forbid to bring equipment and re-install system ...) I'm not going to jump off the job for the time being, so ask.

Today I saw a lot of people talking about using vagrant with Docker. What I'm trying to say is that you're not using it in depth at all.
How slow is disk sharing with virtual machine scenarios under Windows, you know? Soft link Solutions How painful it is to have more eggs, you know? How long does it take to refresh a page with a slightly heavier frame?

Another: Three years ago I used vagrant, due to win under various problems, finally switched to Mac, I still use vagrant. Recommended vagrant people, probably have not been exposed to Windows under those egg pain.

Of course there are, and they are all PHP official, not like itellyou kind of third party like the site of stealing things.
Linux:
Https://pecl.php.net/package/memcache
Https://pecl.php.net/package/memcached
Windows:
http://windows.php.net/downloads/pecl/releases/memcache/

Note here that PHP has two pecl extensions that connect memcached
Http://php.net/memcache
Http://pecl.php.net/package/memcache
http://windows.php.net/downloads/pecl/releases/memcache/

Http://php.net/memcached
Http://pecl.php.net/package/memcached

The memcached extension uses the libmemcached library, which enables the distribution of different keys to be saved on different servers:
http://php.net/manual/zh/memcached.addserver.php
Note that the memcached extension does not support Windows.

Both support persistent connections and also provide session.save_handler support.
Persistent connections that is, each PHP process maintains a connection to the Mysql/memcached/redis, does not disconnect after the script processing completes, the next time can be reused, all this is transparent to the script.

Use of Session.save_handler:
http://php.net/manual/zh/memcache.ini.php
http://php.net/manual/zh/memcached.sessions.php

Persistent Connection:


  
   pconnect('127.0.0.1', 11211);$mc->delete('post_id');$mc->set('post_id', 'json');$json = $mc->get('post_id');$mc->replace('post_id', 'new_json');?>
  
   setOption(Memcached::OPT_LIBKETAMA_COMPATIBLE, true);if (!count($mc->getServerList())) {    $mc->addServers(array(        array('mc1.example.com',11211),        array('mc2.example.com',11211),    ));}?>

Because the Addserver/addservers function does not check for persistent connections,
So you need to use getserverlist to check if a long connection resource with the same name already exists in the PHP-FPM process executing the current script.
If present, do not reuse the Addserver/addservers method to add persistent connections.

The proposed master uses vagrant to install a portable development environment, if you have been running PHP programs under Windows, prove that you are not familiar with the lamp or LNMP system, sometimes the technology is forced out of the environment, do not be content with the Windows graphical environment, Otherwise, it's a long time before technology can really grow.

No

Http://www.urielkatz.com/projects/memcached-win64/memcached-win64.zip

Split Wall recommended installation Docker
Now Docker is very convenient, win8 above the machine, have Hyper-V do not have to install VBox run Boot2docker

What exactly is Docker? Can you explain it in plain explanation? Thank you

As a developer you can either use Mac or Linux, or Docker

Windows Extensions Official Library
http://windows.php.net/downloads/pecl/releases/

https://pecl.php.net/my windows extension is in the inside look for, no problem ah. No need to find another extension station

Recommend you use vagrant Local build a virtual machine, especially good, haha

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.