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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>hepic-lake Sharding Benchmark — 55.8M rec/s with 3 Shards</title> | |
| <style> | |
| :root { | |
| --bg: #0f1117; | |
| --card: #1a1d2e; |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>hepic-lake Performance Optimization Benchmark — 34.9M rec/s Stable</title> | |
| <style> | |
| :root { | |
| --bg: #0f1117; | |
| --card: #1a1d2e; |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Coalescer Benchmark — Data Integrity Report</title> | |
| <style> | |
| :root { | |
| --bg: #0f1117; | |
| --card: #1a1d2e; |
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
| # Generate a unique private key (KEY) | |
| sudo openssl genrsa -out mydomain.key 2048 | |
| # Generating a Certificate Signing Request (CSR) | |
| sudo openssl req -new -key mydomain.key -out mydomain.csr | |
| # Creating a Self-Signed Certificate (CRT) | |
| openssl x509 -req -days 365 -in mydomain.csr -signkey mydomain.key -out mydomain.crt | |
| # Append KEY and CRT to mydomain.pem |
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
| $ haproxy -vv | grep Lua | |
| Built with Lua version : Lua 5.3.5 |
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
| $ haproxy -vv | grep Lua | |
| Built with Lua version : Lua 5.3.5 |
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 | |
| PASSWORD="--password=password" | |
| DBLIST="db1 db2 db3" | |
| OUTDIR=. | |
| while read -r db ; do | |
| while read -r table ; do |
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
| /* Copyright (c) 2013 Gianni Tedesco | |
| * Released under the terms of the GNU GPL version 3 | |
| * mmap() packet socket transmission | |
| */ | |
| #ifndef __linux__ | |
| #error "Are you loco? This is Linux only!" | |
| #endif | |
| #include <stdio.h> |
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
| #include <string> | |
| #include <fstream> | |
| #include <vector> | |
| #include <sstream> | |
| #include <algorithm> | |
| #include <iostream> | |
| #include <stdexcept> | |
| #include <array> | |
| std::vector<std::string> &split(const std::string &s, char delim, std::vector<std::string> &elems) { |
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
| <?xml version="1.0"?> | |
| <document type="captagent/xml"> | |
| <configuration name="core.conf" description="CORE Settings" serial="2014024212"> | |
| <settings> | |
| <param name="debug" value="10"/> | |
| <param name="version" value="2"/> | |
| <param name="serial" value="2014056501"/> | |
| <param name="uuid" value="00781a4a-5b69-11e4-9522-bb79a8fcf0f3"/> | |
| <param name="daemon" value="false"/> | |
| <param name="syslog" value="false"/> |
NewerOlder