This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FetchError: request to http://solr.internal:8080/solr/maincore/update? failed, reason: connect ECONNREFUSED 169.254.143.220:8080 | |
at ClientRequest.<anonymous> (/app/node_modules/node-fetch/lib/index.js:1455:11) | |
at ClientRequest.emit (events.js:314:20) | |
at Socket.socketErrorListener (_http_client.js:469:9) | |
at Socket.emit (events.js:314:20) | |
at emitErrorNT (internal/streams/destroy.js:100:8) | |
at emitErrorCloseNT (internal/streams/destroy.js:68:3) | |
at processTicksAndRejections (internal/process/task_queues.js:80:21) { | |
type: 'system', | |
errno: 'ECONNREFUSED', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
const ITERS = 1000000; | |
class QueryBuilder { | |
public $select; | |
public $from; | |
public $where; | |
public function withSelect($sel) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// PSR-7 today | |
class Request implements RequestInterface | |
{ | |
private UriInterface $uri; | |
private array $headers = []; | |
private string $method = 'GET'; | |
private string $version = '1.1'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: myproject | |
recipe: laravel | |
config: | |
php: '8.1' | |
via: nginx | |
database: mysql:5.7 | |
webroot: public | |
xdebug: true | |
services: | |
appserver: |
OlderNewer