-
Signup:
Route:
POST: /api/signup
Body:
This file contains 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
var Redis = require('ioredis'); | |
// single instance | |
//var redis = new Redis(); | |
// cluster | |
var redis = new Redis.Cluster([ | |
{ | |
"host": "127.0.0.1", | |
"port": 6380 |
This file has been truncated, but you can view the full file.
This file contains 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
INFO:HLSNetStream:close | |
DEBUG:StreamBuffer flushed | |
DEBUG:add callback textLoaded, id:0 | |
DEBUG:cancel any manifest load in progress | |
DEBUG:JSURLLoader.load:http://livestream.peer5.com/video/kite/index.m3u8 | |
The XMLHttpRequest progress event property 'position' is deprecated. Please use 'loaded' instead. | |
The XMLHttpRequest progress event property 'totalSize' is deprecated. Please use 'total' instead. | |
DEBUG:resourceLoaded | |
DEBUG:switch to level 0 |
This file contains 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
{ | |
"template": "logstash-*", | |
"settings": { | |
"index.refresh_interval": "5s" | |
}, | |
"mappings": { | |
"_default_": { | |
"_all": { | |
"enabled": false | |
}, |
This file contains 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
curl -XPUT localhost:9200/logstash-YYYY.MM.DD/_settings -d '{ "index.cache.query.enable": true }' |