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
| editor.zero.latency.typing=true | |
| idea.max.intellisense.filesize=3500 | |
| idea.cycle.buffer.size=4096 |
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
| -Xms256m | |
| -Xmx1600m | |
| -Dfile.encoding=UTF-8 | |
| -XX:+UseG1GC | |
| -XX:ParallelGCThreads=4 | |
| -XX:ConcGCThreads=4 | |
| -XX:+ExplicitGCInvokesConcurrent | |
| -XX:+UseAdaptiveGCBoundary | |
| -XX:CompileThreshold=2000 | |
| -XX:+AlwaysPreTouch |
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
| version: '3.10' | |
| services: | |
| redis: | |
| image: 'bitnami/redis:latest' | |
| environment: | |
| - ALLOW_EMPTY_PASSWORD=yes | |
| - REDIS_DISABLE_COMMANDS=FLUSHDB,FLUSHALL | |
| - REDIS_TLS_ENABLED=yes | |
| - REDIS_TLS_PORT_NUMBER=6379 |
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
| #!/bin/bash | |
| # Source: https://github.com/redis/redis/blob/unstable/utils/gen-test-certs.sh | |
| cwd=`pwd` | |
| create_pem() { | |
| local name=$1 | |
| local password=${server_name}12345 | |
| local server_name=$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
| {} |
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
| {"lastUpload":"2017-08-04T05:32:30.614Z","extensionVersion":"v2.8.2"} |
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
| package main | |
| import ( | |
| "fmt" | |
| "math/rand" | |
| "strconv" | |
| "time" | |
| "github.com/Shopify/sarama" | |
| ) |