wrk -t4 -c400 -d10s http://127.0.0.1:1337/
Running 10s test @ http://127.0.0.1:1337/
4 threads and 400 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 7.02ms 6.94ms 82.86ms 85.27%
| { | |
| "always-semicolon": true, | |
| "color-case": "lower", | |
| "block-indent": " ", | |
| "color-shorthand": false, | |
| "element-case": "lower", | |
| "eof-newline": true, | |
| "leading-zero": true, | |
| "quotes": "double", | |
| "space-before-colon": "", |
| var http = require('http'); | |
| var redis = require('redis'); | |
| var client = redis.createClient(); | |
| var server = http.createServer(function (req, res) { | |
| client.get('foo', function(err, foo) { | |
| res.writeHead(200, { | |
| 'Content-Type': 'application/json' | |
| }); | |
| res.end(JSON.stringify({ |
| const React = require('react'); | |
| const EventListener = require('react/lib/EventListener'); | |
| const {shouldComponentUpdate} = require('react/lib/ReactComponentWithPureRenderMixin'); | |
| const InfinityScroll = React.createClass({ | |
| propTypes: { | |
| children: React.PropTypes.node.isRequired, | |
| enabled: React.PropTypes.bool.isRequired, | |
| threshold: React.PropTypes.number.isRequired, | |
| onScrollDown: React.PropTypes.func.isRequired |
| const React = require('react'); | |
| const Form = React.createClass({ | |
| propTypes: { | |
| onSubmit: React.PropTypes.func.isRequired, | |
| defaultValue: React.PropTypes.object.isRequired, | |
| children: React.PropTypes.node.isRequired | |
| }, | |
| getInitialState() { | |
| return Object.assign({}, this.props.defaultValue); |
| function todoReducer(state, action) { | |
| switch (action.type) { | |
| case 'ADD_TODO': | |
| return [action.payload, ...state]; | |
| default: | |
| return state; | |
| } | |
| } | |
| const actions = [ |
| .ribbon { | |
| font-size: 16px !important; | |
| width: 50%; | |
| position: relative; | |
| background: @brand-primary; | |
| color: #fff; | |
| text-align: center; | |
| padding: 1em 2em; | |
| margin: 0 auto; |
| const Input = React.createClass({ | |
| render() { | |
| if (this.props.type === 'select') { | |
| return ( | |
| <select {...this.props}>{this.props.children}</select>; | |
| ); | |
| } | |
| } | |
| }) |
| [email protected] | |
| [email protected] | |
| [email protected] | |
| [email protected] | |
| [email protected] | |
| [email protected] | |
| [email protected] | |
| [email protected] | |
| [email protected] | |
| [email protected] |