Compare commits
46 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f6758ada06 | ||
|
|
0545be9cbd | ||
|
|
1d6c4c037e | ||
|
|
0f8f3ba0ec | ||
|
|
95620d0588 | ||
|
|
dd85e6e7b8 | ||
|
|
f4ba5f2c8d | ||
|
|
11723b2d55 | ||
|
|
129d48fba8 | ||
|
|
f385987c60 | ||
|
|
fedce20700 | ||
|
|
c55fd67b0b | ||
|
|
395b80ecb8 | ||
|
|
1735d1665c | ||
|
|
7912e1c2ad | ||
|
|
ca8836774b | ||
|
|
0c9eee073e | ||
|
|
9796a45b13 | ||
|
|
e19ad0d49c | ||
|
|
314c4cf16f | ||
|
|
ad23ba2334 | ||
|
|
52f4e3b203 | ||
|
|
6196b5f09f | ||
|
|
75c0d392e1 | ||
|
|
abaa772460 | ||
|
|
1d23a840b3 | ||
|
|
302447eade | ||
|
|
58c4d827ea | ||
|
|
fa9fcd90f8 | ||
|
|
dcc49349c0 | ||
|
|
a2ab3225a9 | ||
|
|
fe83b6917c | ||
|
|
7d3f5140b6 | ||
|
|
f9070ccdec | ||
|
|
0a5c169885 | ||
|
|
1f09bacc99 | ||
|
|
418721a6f3 | ||
|
|
ad53c1b829 | ||
|
|
0b0bc6a455 | ||
|
|
c8c5ab4961 | ||
|
|
a030544e4d | ||
|
|
6a0301d498 | ||
|
|
ca0f9423fd | ||
|
|
ba32f2413d | ||
|
|
1fa3c0d1b9 | ||
|
|
a2d1655fe9 |
@@ -529,6 +529,29 @@ class Memcached
|
||||
return $newVal;
|
||||
}
|
||||
|
||||
/**
|
||||
* Flush the cache
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
public function flush()
|
||||
{
|
||||
$this->writeSocket('flush_all') ;
|
||||
|
||||
$s = $this->readSocket();
|
||||
|
||||
if ('OK' == $s) {
|
||||
$this->resultCode = Memcached::RES_SUCCESS;
|
||||
$this->resultMessage = '';
|
||||
return true;
|
||||
|
||||
} else {
|
||||
$this->resultCode = Memcached::RES_FAILURE;
|
||||
$this->resultMessage = 'Flush fail.';
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Write data to socket
|
||||
*
|
||||
|
||||
BIN
laragon.exe
BIN
laragon.exe
Binary file not shown.
@@ -7,16 +7,22 @@ Lang=English
|
||||
|
||||
[nginx]
|
||||
Use=-1
|
||||
Upstream=2
|
||||
Version=nginx-1.14.0
|
||||
DocumentRoot=C:/laragon/www
|
||||
|
||||
[php]
|
||||
Version=php-5.4.9-nts-Win32-VC9-x86
|
||||
|
||||
[mysql]
|
||||
Use=-1
|
||||
Version=mysql-5.1.72-win32
|
||||
|
||||
[apache]
|
||||
Use=-1
|
||||
|
||||
[mongodb]
|
||||
Use=-1
|
||||
|
||||
[postgresql]
|
||||
Use=-1
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
# PHP
|
||||
php=https://windows.php.net/downloads/releases/php-7.2.13-Win32-VC15-x64.zip
|
||||
php=https://windows.php.net/downloads/releases/php-7.3.3-Win32-VC15-x64.zip
|
||||
|
||||
# Apache
|
||||
apache=https://home.apache.org/~steffenal/VC14/binaries/httpd-2.4.37-win64-VC14.zip
|
||||
apache=https://home.apache.org/~steffenal/VC15/binaries/httpd-2.4.38-win64-VC15.zip
|
||||
|
||||
# phpMyAdmin
|
||||
*phpmyadmin=https://files.phpmyadmin.net/phpMyAdmin/4.8.3/phpMyAdmin-4.8.3-english.zip
|
||||
*phpmyadmin=https://files.phpmyadmin.net/phpMyAdmin/4.8.5/phpMyAdmin-4.8.5-all-languages.zip
|
||||
|
||||
# MariaDB
|
||||
# mariadb10.3=https://downloads.mariadb.org/f/mariadb-10.3.10/winx64-packages/mariadb-10.3.10-winx64.zip/from/http%3A//sgp1.mirrors.digitalocean.com/mariadb/?serve
|
||||
# mysql-8.0=https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.13-winx64.zip
|
||||
mysql-5.7=https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.24-winx64.zip
|
||||
# mariadb10.3=https://downloads.mariadb.org/interstitial/mariadb-10.3.13/winx64-packages/mariadb-10.3.13-winx64.zip/from/https%3A//mirrors.nxthost.com/mariadb/?serve
|
||||
# mysql-8.0=https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.15-winx64.zip
|
||||
mysql-5.7=https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.25-winx64.zip
|
||||
*git=https://github.com/leokhoa/laragon-packages/releases/download/4.0/git-2.19.2.zip
|
||||
------------------------------------------------------
|
||||
|
||||
# Node.js
|
||||
#*node-11=https://nodejs.org/dist/v11.1.0/node-v11.1.0-win-x64.zip
|
||||
*node-10=https://nodejs.org/dist/v10.13.0/node-v10.13.0-win-x64.zip
|
||||
*yarn=https://github.com/yarnpkg/yarn/releases/download/v1.12.3/yarn-v1.12.3.tar.gz
|
||||
#*node-11=https://nodejs.org/dist/v11.12.0/node-v11.12.0-win-x64.zip
|
||||
*node-10=https://nodejs.org/dist/v10.15.3/node-v10.15.3-win-x64.zip
|
||||
*yarn=https://github.com/yarnpkg/yarn/releases/download/v1.15.2/yarn-v1.15.2.tar.gz
|
||||
|
||||
# MongoDB https://www.mongodb.com/download-center/community
|
||||
mongodb-4=https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-ssl-4.0.3.zip
|
||||
@@ -34,13 +34,13 @@ python-3.6=https://github.com/leokhoa/laragon/releases/download/portable/python-
|
||||
sublime=https://download.sublimetext.com/Sublime%20Text%20Build%203176%20x64.zip
|
||||
|
||||
# PostgreSQL
|
||||
postgresql-11=https://get.enterprisedb.com/postgresql/postgresql-11.0-1-windows-x64-binaries.zip
|
||||
# postgresql-10=https://get.enterprisedb.com/postgresql/postgresql-10.5-1-windows-x64-binaries.zip
|
||||
postgresql-11=https://get.enterprisedb.com/postgresql/postgresql-11.2-1-windows-x64-binaries.zip
|
||||
# postgresql-10=https://get.enterprisedb.com/postgresql/postgresql-10.7-1-windows-x64-binaries.zip
|
||||
|
||||
------------------------------------------------------
|
||||
#Go
|
||||
go-1.11=https://dl.google.com/go/go1.11.1.windows-amd64.zip
|
||||
liteide=https://github.com/visualfc/liteide/releases/download/x35.1/liteidex35.1.windows-qt5.9.5.zip
|
||||
go-1.12=https://dl.google.com/go/go1.12.1.windows-amd64.zip
|
||||
liteide=https://github.com/visualfc/liteide/releases/download/x36/liteidex36.windows-qt5.9.5.zip
|
||||
|
||||
------------------------------------------------------
|
||||
ruby=https://dl.bintray.com/oneclick/rubyinstaller/ruby-2.3.3-x64-mingw32.7z
|
||||
@@ -48,5 +48,5 @@ devkit=https://github.com/leokhoa/laragon/releases/download/portable/devkit.7z
|
||||
|
||||
------------------------------------------------------
|
||||
java=https://github.com/leokhoa/laragon/releases/download/portable/jdk-8u131-windows-x64.7z
|
||||
sts=https://download.springsource.com/release/STS/3.9.6.RELEASE/dist/e4.9/spring-tool-suite-3.9.6.RELEASE-e4.9.0-win32-x86_64.zip
|
||||
#sts=https://download.springsource.com/release/STS/3.9.6.RELEASE/dist/e4.9/spring-tool-suite-3.9.6.RELEASE-e4.9.0-win32-x86_64.zip
|
||||
eclipse=http://cdn.yatta.de/eclipse-mirror/technology/epp/downloads/release/2018-09/R/eclipse-committers-2018-09-win32-x86_64.zip
|
||||
Reference in New Issue
Block a user