├── .gitignore ├── .travis.yml ├── Dockerfile ├── Godeps ├── Godeps.json └── Readme ├── MIT-LICENSE.txt ├── Makefile ├── README.md ├── admin ├── codis-dashboard-admin.sh ├── codis-fe-admin.sh ├── codis-proxy-admin.sh └── codis-server-admin.sh ├── ansible ├── group_vars │ └── all ├── hosts ├── roles │ ├── codis-dashboard │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ ├── codis-dashboard-admin.sh │ │ │ └── dashboard.toml │ ├── codis-fe │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ └── codis-fe-admin.sh │ ├── codis-proxy │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ ├── codis-proxy-admin.sh │ │ │ └── proxy.toml │ ├── codis-server │ │ ├── tasks │ │ │ └── main.yml │ │ └── templates │ │ │ ├── codis-server-admin.sh │ │ │ └── redis.conf │ ├── common │ │ └── tasks │ │ │ └── main.yml │ └── redis-sentinel │ │ ├── tasks │ │ └── main.yml │ │ └── templates │ │ ├── redis-sentinel-admin.sh │ │ └── sentinel.conf └── site.yml ├── cmd ├── admin │ ├── admin.go │ ├── dashboard.go │ ├── main.go │ └── proxy.go ├── dashboard │ └── main.go ├── fe │ ├── assets │ │ ├── css │ │ │ ├── fonts │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ └── main.css │ │ ├── dashboard-fe.js │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── node_modules │ │ │ ├── angular-ui-bootstrap │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ ├── ui-bootstrap-csp.css │ │ │ │ ├── ui-bootstrap-tpls.js │ │ │ │ ├── ui-bootstrap-tpls.min.js │ │ │ │ ├── ui-bootstrap.js │ │ │ │ └── ui-bootstrap.min.js │ │ │ ├── angular │ │ │ │ ├── README.md │ │ │ │ ├── angular-csp.css │ │ │ │ ├── angular.js │ │ │ │ ├── angular.min.js │ │ │ │ ├── angular.min.js.gzip │ │ │ │ ├── angular.min.js.map │ │ │ │ ├── bower.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── bootstrap-dialog │ │ │ │ ├── .eslintignore │ │ │ │ ├── .eslintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── changelog.txt │ │ │ │ ├── composer.json │ │ │ │ ├── dist │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-dialog.css │ │ │ │ │ │ └── bootstrap-dialog.min.css │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap-dialog.js │ │ │ │ │ │ └── bootstrap-dialog.min.js │ │ │ │ │ └── less │ │ │ │ │ │ └── bootstrap-dialog.less │ │ │ │ ├── examples │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── bootstrap-dialog │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap-dialog.css │ │ │ │ │ │ │ │ └── bootstrap-dialog.min.css │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ │ ├── bootstrap-dialog.js │ │ │ │ │ │ │ │ └── bootstrap-dialog.min.js │ │ │ │ │ │ │ └── less │ │ │ │ │ │ │ │ └── bootstrap-dialog.less │ │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ │ └── npm.js │ │ │ │ │ │ ├── jquery │ │ │ │ │ │ │ └── jquery-1.10.2.min.js │ │ │ │ │ │ └── prettify │ │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ │ └── run_prettify.js │ │ │ │ │ ├── images │ │ │ │ │ │ └── pig.ico │ │ │ │ │ ├── index.html │ │ │ │ │ ├── play │ │ │ │ │ │ ├── append-to-div.html │ │ │ │ │ │ ├── button-event.html │ │ │ │ │ │ ├── custom-dialog-id.html │ │ │ │ │ │ ├── only-one-dialog.html │ │ │ │ │ │ ├── reopen-dialog.html │ │ │ │ │ │ ├── spinning-icon.html │ │ │ │ │ │ └── tabindex.html │ │ │ │ │ └── remote.html │ │ │ │ ├── gulpfile.js │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ ├── css │ │ │ │ │ └── bootstrap-dialog.css │ │ │ │ │ ├── js │ │ │ │ │ └── bootstrap-dialog.js │ │ │ │ │ └── less │ │ │ │ │ └── bootstrap-dialog.less │ │ │ ├── bootstrap │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── npm.js │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ ├── grunt │ │ │ │ │ ├── .jshintrc │ │ │ │ │ ├── bs-commonjs-generator.js │ │ │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ │ │ ├── bs-lessdoc-parser.js │ │ │ │ │ ├── bs-raw-files-generator.js │ │ │ │ │ ├── configBridge.json │ │ │ │ │ └── sauce_browsers.yml │ │ │ │ ├── js │ │ │ │ │ ├── affix.js │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ └── transition.js │ │ │ │ ├── less │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── badges.less │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ ├── breadcrumbs.less │ │ │ │ │ ├── button-groups.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── carousel.less │ │ │ │ │ ├── close.less │ │ │ │ │ ├── code.less │ │ │ │ │ ├── component-animations.less │ │ │ │ │ ├── dropdowns.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── glyphicons.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── input-groups.less │ │ │ │ │ ├── jumbotron.less │ │ │ │ │ ├── labels.less │ │ │ │ │ ├── list-group.less │ │ │ │ │ ├── media.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── mixins │ │ │ │ │ │ ├── alerts.less │ │ │ │ │ │ ├── background-variant.less │ │ │ │ │ │ ├── border-radius.less │ │ │ │ │ │ ├── buttons.less │ │ │ │ │ │ ├── center-block.less │ │ │ │ │ │ ├── clearfix.less │ │ │ │ │ │ ├── forms.less │ │ │ │ │ │ ├── gradients.less │ │ │ │ │ │ ├── grid-framework.less │ │ │ │ │ │ ├── grid.less │ │ │ │ │ │ ├── hide-text.less │ │ │ │ │ │ ├── image.less │ │ │ │ │ │ ├── labels.less │ │ │ │ │ │ ├── list-group.less │ │ │ │ │ │ ├── nav-divider.less │ │ │ │ │ │ ├── nav-vertical-align.less │ │ │ │ │ │ ├── opacity.less │ │ │ │ │ │ ├── pagination.less │ │ │ │ │ │ ├── panels.less │ │ │ │ │ │ ├── progress-bar.less │ │ │ │ │ │ ├── reset-filter.less │ │ │ │ │ │ ├── reset-text.less │ │ │ │ │ │ ├── resize.less │ │ │ │ │ │ ├── responsive-visibility.less │ │ │ │ │ │ ├── size.less │ │ │ │ │ │ ├── tab-focus.less │ │ │ │ │ │ ├── table-row.less │ │ │ │ │ │ ├── text-emphasis.less │ │ │ │ │ │ ├── text-overflow.less │ │ │ │ │ │ └── vendor-prefixes.less │ │ │ │ │ ├── modals.less │ │ │ │ │ ├── navbar.less │ │ │ │ │ ├── navs.less │ │ │ │ │ ├── normalize.less │ │ │ │ │ ├── pager.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── panels.less │ │ │ │ │ ├── popovers.less │ │ │ │ │ ├── print.less │ │ │ │ │ ├── progress-bars.less │ │ │ │ │ ├── responsive-embed.less │ │ │ │ │ ├── responsive-utilities.less │ │ │ │ │ ├── scaffolding.less │ │ │ │ │ ├── tables.less │ │ │ │ │ ├── theme.less │ │ │ │ │ ├── thumbnails.less │ │ │ │ │ ├── tooltip.less │ │ │ │ │ ├── type.less │ │ │ │ │ ├── utilities.less │ │ │ │ │ ├── variables.less │ │ │ │ │ └── wells.less │ │ │ │ └── package.json │ │ │ ├── convert-hex │ │ │ │ ├── .npmignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── component.json │ │ │ │ ├── convert-hex.js │ │ │ │ └── package.json │ │ │ ├── convert-string │ │ │ │ ├── .npmignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── component.json │ │ │ │ ├── convert-string.js │ │ │ │ └── package.json │ │ │ ├── highcharts-ng │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ │ ├── highcharts-ng.js │ │ │ │ │ └── highcharts-ng.min.js │ │ │ │ └── package.json │ │ │ ├── highcharts │ │ │ │ ├── errors │ │ │ │ │ └── errors.xml │ │ │ │ ├── gfx │ │ │ │ │ └── vml-radial-gradient.png │ │ │ │ ├── js │ │ │ │ │ ├── .eslintrc │ │ │ │ │ ├── adapters │ │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ │ ├── debug.php │ │ │ │ │ ├── highcharts-3d.src.js │ │ │ │ │ ├── highcharts-more.debug.js │ │ │ │ │ ├── highcharts-more.src.js │ │ │ │ │ ├── highcharts.debug.js │ │ │ │ │ ├── highcharts.js │ │ │ │ │ ├── highcharts.src.js │ │ │ │ │ ├── highmaps.src.js │ │ │ │ │ ├── highstock.debug.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── highstock.src.js │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ │ ├── boost.src.js │ │ │ │ │ │ ├── broken-axis.src.js │ │ │ │ │ │ ├── canvasrenderer.experimental.src.js │ │ │ │ │ │ ├── canvgrenderer-extended.src.js │ │ │ │ │ │ ├── data.src.js │ │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ │ ├── exporting-old-look.src.js │ │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ │ ├── map-parser.src.js │ │ │ │ │ │ ├── map.src.js │ │ │ │ │ │ ├── no-data-to-display.src.js │ │ │ │ │ │ ├── offline-exporting.src.js │ │ │ │ │ │ ├── overlapping-datalabels.src.js │ │ │ │ │ │ ├── series-label.src.js │ │ │ │ │ │ ├── solid-gauge.src.js │ │ │ │ │ │ └── treemap.src.js │ │ │ │ │ ├── parts-3d │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ ├── Axis.js │ │ │ │ │ │ ├── Chart.js │ │ │ │ │ │ ├── Column.js │ │ │ │ │ │ ├── Globals.js │ │ │ │ │ │ ├── Intro.js │ │ │ │ │ │ ├── Math.js │ │ │ │ │ │ ├── Outro.js │ │ │ │ │ │ ├── Pie.js │ │ │ │ │ │ ├── SVGRenderer.js │ │ │ │ │ │ ├── Scatter.js │ │ │ │ │ │ └── VMLRenderer.js │ │ │ │ │ ├── parts-map │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ ├── ColorAxis.js │ │ │ │ │ │ ├── ColorSeriesMixin.js │ │ │ │ │ │ ├── GeoJSON.js │ │ │ │ │ │ ├── Globals.js │ │ │ │ │ │ ├── HeatmapGlobals.js │ │ │ │ │ │ ├── HeatmapIntro.js │ │ │ │ │ │ ├── HeatmapSeries.js │ │ │ │ │ │ ├── Intro.js │ │ │ │ │ │ ├── IntroMapModule.js │ │ │ │ │ │ ├── Map.js │ │ │ │ │ │ ├── MapAxis.js │ │ │ │ │ │ ├── MapBubbleSeries.js │ │ │ │ │ │ ├── MapLineSeries.js │ │ │ │ │ │ ├── MapNavigation.js │ │ │ │ │ │ ├── MapPointSeries.js │ │ │ │ │ │ ├── MapPointer.js │ │ │ │ │ │ ├── MapSeries.js │ │ │ │ │ │ └── Outro.js │ │ │ │ │ ├── parts-more │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ ├── AreaRangeSeries.js │ │ │ │ │ │ ├── AreaSplineRangeSeries.js │ │ │ │ │ │ ├── BoxPlotSeries.js │ │ │ │ │ │ ├── BubbleSeries.js │ │ │ │ │ │ ├── ColumnRangeSeries.js │ │ │ │ │ │ ├── ErrorBarSeries.js │ │ │ │ │ │ ├── GaugeSeries.js │ │ │ │ │ │ ├── Globals.js │ │ │ │ │ │ ├── Intro.js │ │ │ │ │ │ ├── Outro.js │ │ │ │ │ │ ├── Pane.js │ │ │ │ │ │ ├── Polar.js │ │ │ │ │ │ ├── PolygonSeries.js │ │ │ │ │ │ ├── RadialAxis.js │ │ │ │ │ │ └── WaterfallSeries.js │ │ │ │ │ ├── parts.js │ │ │ │ │ ├── parts │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ ├── Adapters.js │ │ │ │ │ │ ├── AreaSeries.js │ │ │ │ │ │ ├── AreaSplineSeries.js │ │ │ │ │ │ ├── Axis.js │ │ │ │ │ │ ├── BarSeries.js │ │ │ │ │ │ ├── CanVGRenderer.js │ │ │ │ │ │ ├── CandlestickSeries.js │ │ │ │ │ │ ├── CenteredSeriesMixin.js │ │ │ │ │ │ ├── Chart.js │ │ │ │ │ │ ├── Color.js │ │ │ │ │ │ ├── ColumnSeries.js │ │ │ │ │ │ ├── DataGrouping.js │ │ │ │ │ │ ├── DataLabels.js │ │ │ │ │ │ ├── DateTimeAxis.js │ │ │ │ │ │ ├── Dynamics.js │ │ │ │ │ │ ├── Facade.js │ │ │ │ │ │ ├── FlagsSeries.js │ │ │ │ │ │ ├── Globals.js │ │ │ │ │ │ ├── Html.js │ │ │ │ │ │ ├── Interaction.js │ │ │ │ │ │ ├── Intro.js │ │ │ │ │ │ ├── JQueryAdapter.js │ │ │ │ │ │ ├── Legend.js │ │ │ │ │ │ ├── LineSeries.js │ │ │ │ │ │ ├── LogarithmicAxis.js │ │ │ │ │ │ ├── MSPointer.js │ │ │ │ │ │ ├── OHLCSeries.js │ │ │ │ │ │ ├── Options.js │ │ │ │ │ │ ├── OrdinalAxis.js │ │ │ │ │ │ ├── Outro.js │ │ │ │ │ │ ├── PathAnimation.js │ │ │ │ │ │ ├── PieSeries.js │ │ │ │ │ │ ├── PlotBandSeries.experimental.js │ │ │ │ │ │ ├── PlotLineOrBand.js │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ ├── Pointer.js │ │ │ │ │ │ ├── RangeSelector.js │ │ │ │ │ │ ├── ScatterSeries.js │ │ │ │ │ │ ├── Scroller.js │ │ │ │ │ │ ├── Series.js │ │ │ │ │ │ ├── SplineSeries.js │ │ │ │ │ │ ├── Stacking.js │ │ │ │ │ │ ├── StockChart.js │ │ │ │ │ │ ├── StockNavigation.js │ │ │ │ │ │ ├── SvgRenderer.js │ │ │ │ │ │ ├── Tick.js │ │ │ │ │ │ ├── Tooltip.js │ │ │ │ │ │ ├── TouchPointer.js │ │ │ │ │ │ ├── Utilities.js │ │ │ │ │ │ └── VmlRenderer.js │ │ │ │ │ └── themes │ │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ │ ├── dark-green.js │ │ │ │ │ │ ├── dark-unica.js │ │ │ │ │ │ ├── gray.js │ │ │ │ │ │ ├── grid-light.js │ │ │ │ │ │ ├── grid.js │ │ │ │ │ │ ├── sand-signika.js │ │ │ │ │ │ └── skies.js │ │ │ │ ├── lib │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── standalone-framework.js │ │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ │ ├── highcharts-3d.js │ │ │ │ │ ├── highcharts-3d.src.js │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highcharts-more.src.js │ │ │ │ │ ├── highcharts.js │ │ │ │ │ ├── highcharts.src.js │ │ │ │ │ ├── highmaps.js │ │ │ │ │ ├── highmaps.src.js │ │ │ │ │ ├── highstock.js │ │ │ │ │ ├── highstock.src.js │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── boost.js │ │ │ │ │ │ ├── boost.src.js │ │ │ │ │ │ ├── broken-axis.js │ │ │ │ │ │ ├── broken-axis.src.js │ │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ │ ├── canvas-tools.src.js │ │ │ │ │ │ ├── data.js │ │ │ │ │ │ ├── data.src.js │ │ │ │ │ │ ├── drilldown.js │ │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ │ ├── exporting.js │ │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ │ ├── funnel.js │ │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ │ ├── heatmap.js │ │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ │ ├── map.js │ │ │ │ │ │ ├── map.src.js │ │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ │ ├── no-data-to-display.src.js │ │ │ │ │ │ ├── offline-exporting.js │ │ │ │ │ │ ├── offline-exporting.src.js │ │ │ │ │ │ ├── solid-gauge.js │ │ │ │ │ │ ├── solid-gauge.src.js │ │ │ │ │ │ ├── treemap.js │ │ │ │ │ │ └── treemap.src.js │ │ │ │ │ └── themes │ │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ │ ├── dark-green.js │ │ │ │ │ │ ├── dark-unica.js │ │ │ │ │ │ ├── gray.js │ │ │ │ │ │ ├── grid-light.js │ │ │ │ │ │ ├── grid.js │ │ │ │ │ │ ├── sand-signika.js │ │ │ │ │ │ └── skies.js │ │ │ │ ├── license.txt │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ ├── jquery │ │ │ │ ├── .bowerrc │ │ │ │ ├── .jscsrc │ │ │ │ ├── .npmignore │ │ │ │ ├── AUTHORS.txt │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── dist │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ └── jquery.min.map │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ ├── ajax.js │ │ │ │ │ ├── ajax │ │ │ │ │ ├── jsonp.js │ │ │ │ │ ├── load.js │ │ │ │ │ ├── parseJSON.js │ │ │ │ │ ├── parseXML.js │ │ │ │ │ ├── script.js │ │ │ │ │ ├── var │ │ │ │ │ │ ├── nonce.js │ │ │ │ │ │ └── rquery.js │ │ │ │ │ └── xhr.js │ │ │ │ │ ├── attributes.js │ │ │ │ │ ├── attributes │ │ │ │ │ ├── attr.js │ │ │ │ │ ├── classes.js │ │ │ │ │ ├── prop.js │ │ │ │ │ ├── support.js │ │ │ │ │ └── val.js │ │ │ │ │ ├── callbacks.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── core │ │ │ │ │ ├── access.js │ │ │ │ │ ├── init.js │ │ │ │ │ ├── parseHTML.js │ │ │ │ │ ├── ready.js │ │ │ │ │ └── var │ │ │ │ │ │ └── rsingleTag.js │ │ │ │ │ ├── css.js │ │ │ │ │ ├── css │ │ │ │ │ ├── addGetHookIf.js │ │ │ │ │ ├── curCSS.js │ │ │ │ │ ├── defaultDisplay.js │ │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ │ ├── support.js │ │ │ │ │ ├── swap.js │ │ │ │ │ └── var │ │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ │ ├── getStyles.js │ │ │ │ │ │ ├── isHidden.js │ │ │ │ │ │ ├── rmargin.js │ │ │ │ │ │ └── rnumnonpx.js │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data │ │ │ │ │ ├── Data.js │ │ │ │ │ ├── accepts.js │ │ │ │ │ └── var │ │ │ │ │ │ ├── data_priv.js │ │ │ │ │ │ └── data_user.js │ │ │ │ │ ├── deferred.js │ │ │ │ │ ├── deprecated.js │ │ │ │ │ ├── dimensions.js │ │ │ │ │ ├── effects.js │ │ │ │ │ ├── effects │ │ │ │ │ ├── Tween.js │ │ │ │ │ └── animatedSelector.js │ │ │ │ │ ├── event.js │ │ │ │ │ ├── event │ │ │ │ │ ├── ajax.js │ │ │ │ │ ├── alias.js │ │ │ │ │ └── support.js │ │ │ │ │ ├── exports │ │ │ │ │ ├── amd.js │ │ │ │ │ └── global.js │ │ │ │ │ ├── intro.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── manipulation.js │ │ │ │ │ ├── manipulation │ │ │ │ │ ├── _evalUrl.js │ │ │ │ │ ├── support.js │ │ │ │ │ └── var │ │ │ │ │ │ └── rcheckableType.js │ │ │ │ │ ├── offset.js │ │ │ │ │ ├── outro.js │ │ │ │ │ ├── queue.js │ │ │ │ │ ├── queue │ │ │ │ │ └── delay.js │ │ │ │ │ ├── selector-native.js │ │ │ │ │ ├── selector-sizzle.js │ │ │ │ │ ├── selector.js │ │ │ │ │ ├── serialize.js │ │ │ │ │ ├── sizzle │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── sizzle.js │ │ │ │ │ │ ├── sizzle.min.js │ │ │ │ │ │ └── sizzle.min.map │ │ │ │ │ └── test │ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── empty.js │ │ │ │ │ │ ├── mixed_sort.html │ │ │ │ │ │ └── testinit.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ └── unit │ │ │ │ │ │ ├── extending.js │ │ │ │ │ │ ├── selector.js │ │ │ │ │ │ └── utilities.js │ │ │ │ │ ├── traversing.js │ │ │ │ │ ├── traversing │ │ │ │ │ ├── findFilter.js │ │ │ │ │ └── var │ │ │ │ │ │ └── rneedsContext.js │ │ │ │ │ ├── var │ │ │ │ │ ├── arr.js │ │ │ │ │ ├── class2type.js │ │ │ │ │ ├── concat.js │ │ │ │ │ ├── hasOwn.js │ │ │ │ │ ├── indexOf.js │ │ │ │ │ ├── pnum.js │ │ │ │ │ ├── push.js │ │ │ │ │ ├── rnotwhite.js │ │ │ │ │ ├── slice.js │ │ │ │ │ ├── strundefined.js │ │ │ │ │ ├── support.js │ │ │ │ │ └── toString.js │ │ │ │ │ └── wrap.js │ │ │ └── sha256 │ │ │ │ ├── .npmignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ ├── nodecrypto.js │ │ │ │ └── sha256.js │ │ │ │ └── package.json │ │ └── package.json │ └── main.go ├── ha │ └── main.go └── proxy │ └── main.go ├── config ├── dashboard.toml ├── proxy.toml ├── redis.conf └── sentinel.conf ├── dashboard-Dockerfile ├── deploy ├── Makefile ├── products │ ├── alpha │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── config.json │ │ ├── gen.py │ │ └── render.py │ └── beta │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── config.json │ │ ├── gen.py │ │ └── render.py ├── root │ └── opt │ │ └── codis │ │ └── etc │ │ ├── 10.2.16.200_19000 │ │ ├── codis_proxy_19000.service │ │ ├── proxy.toml │ │ └── proxy_admin │ │ ├── 10.2.16.200_19002 │ │ ├── codis_proxy_19002.service │ │ ├── proxy.toml │ │ └── proxy_admin │ │ ├── 10.2.16.201_19000 │ │ ├── codis_proxy_19000.service │ │ ├── proxy.toml │ │ └── proxy_admin │ │ ├── 10.2.16.201_19002 │ │ ├── codis_proxy_19002.service │ │ ├── proxy.toml │ │ └── proxy_admin │ │ ├── 10.2.16.202_19000 │ │ ├── codis_proxy_19000.service │ │ ├── proxy.toml │ │ └── proxy_admin │ │ ├── 10.2.16.202_19002 │ │ ├── codis_proxy_19002.service │ │ ├── proxy.toml │ │ └── proxy_admin │ │ ├── 10.4.10.100_18080 │ │ ├── codis_dashboard_18080.service │ │ ├── dashboard.toml │ │ ├── dashboard_admin │ │ ├── foreach_proxy │ │ ├── foreach_proxy_online │ │ └── foreach_proxy_reinit │ │ ├── 10.4.10.200_19000 │ │ ├── codis_proxy_19000.service │ │ ├── proxy.toml │ │ └── proxy_admin │ │ ├── 10.4.10.200_19002 │ │ ├── codis_proxy_19002.service │ │ ├── proxy.toml │ │ └── proxy_admin │ │ ├── 10.4.10.201_19000 │ │ ├── codis_proxy_19000.service │ │ ├── proxy.toml │ │ └── proxy_admin │ │ ├── 10.4.10.201_19002 │ │ ├── codis_proxy_19002.service │ │ ├── proxy.toml │ │ └── proxy_admin │ │ ├── 127.0.0.1_18080 │ │ ├── codis_dashboard_18080.service │ │ ├── dashboard.toml │ │ ├── dashboard_admin │ │ ├── foreach_proxy │ │ ├── foreach_proxy_online │ │ └── foreach_proxy_reinit │ │ ├── 127.0.0.1_19000 │ │ ├── codis_proxy_19000.service │ │ ├── proxy.toml │ │ └── proxy_admin │ │ ├── 127.0.0.1_19001 │ │ ├── codis_proxy_19001.service │ │ ├── proxy.toml │ │ └── proxy_admin │ │ ├── 127.0.0.1_19002 │ │ ├── codis_proxy_19002.service │ │ ├── proxy.toml │ │ └── proxy_admin │ │ ├── demo-alpha │ │ └── demo-beta └── templates │ ├── dashboard.service.template │ ├── dashboard.toml.template │ ├── proxy.service.template │ └── proxy.toml.template ├── doc ├── FAQ_en.md ├── FAQ_zh.md ├── bench1 │ ├── Makefile │ ├── bench.pdf │ ├── bench.plot │ ├── bench.png │ ├── input1 │ ├── input2 │ └── input3 ├── bench2 │ ├── Makefile │ ├── bench.pdf │ ├── bench.plot │ ├── bench.png │ ├── input1 │ ├── input2 │ ├── input3 │ ├── input4 │ └── input5 ├── benchmark.md ├── pictures │ ├── .gitignore │ ├── Makefile │ ├── addgroup.jpg │ ├── architecture.png │ ├── architecture.tex │ ├── logo-1.png │ ├── logo-2.png │ ├── logo-3.png │ ├── logo.png │ ├── rebalance_slots.jpg │ ├── snapshots1.png │ ├── snapshots2.png │ ├── snapshots3.png │ └── snapshots4.png ├── redis_change_zh.md ├── tutorial_en.md ├── tutorial_zh.md └── unsupported_cmds.md ├── example ├── .gitignore ├── Makefile ├── dashboard.py ├── fe.py ├── proxy.py ├── sentinel.py ├── sentinel_notify.sh ├── sentinel_reconfig.sh ├── server.py ├── setup.py └── utils.py ├── extern ├── .gitignore ├── README.md ├── deprecated │ ├── redis-2.8.21 │ │ ├── .gitignore │ │ ├── 00-RELEASENOTES │ │ ├── 0000-redis.patch │ │ ├── 0001-slotsscan.patch │ │ ├── 0002-rehash.patch │ │ ├── BUGS │ │ ├── CONTRIBUTING │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── MANIFESTO │ │ ├── Makefile │ │ ├── README │ │ ├── deps │ │ │ ├── Makefile │ │ │ ├── hiredis │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── adapters │ │ │ │ │ ├── ae.h │ │ │ │ │ ├── libev.h │ │ │ │ │ ├── libevent.h │ │ │ │ │ └── libuv.h │ │ │ │ ├── async.c │ │ │ │ ├── async.h │ │ │ │ ├── dict.c │ │ │ │ ├── dict.h │ │ │ │ ├── examples │ │ │ │ │ ├── example-ae.c │ │ │ │ │ ├── example-libev.c │ │ │ │ │ ├── example-libevent.c │ │ │ │ │ ├── example-libuv.c │ │ │ │ │ └── example.c │ │ │ │ ├── fmacros.h │ │ │ │ ├── hiredis.c │ │ │ │ ├── hiredis.h │ │ │ │ ├── net.c │ │ │ │ ├── net.h │ │ │ │ ├── sds.c │ │ │ │ ├── sds.h │ │ │ │ ├── test.c │ │ │ │ └── zmalloc.h │ │ │ ├── jemalloc │ │ │ │ ├── .gitignore │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── autogen.sh │ │ │ │ ├── bin │ │ │ │ │ ├── jemalloc.sh.in │ │ │ │ │ └── pprof │ │ │ │ ├── config.guess │ │ │ │ ├── config.stamp.in │ │ │ │ ├── config.sub │ │ │ │ ├── configure.ac │ │ │ │ ├── coverage.sh │ │ │ │ ├── doc │ │ │ │ │ ├── html.xsl.in │ │ │ │ │ ├── jemalloc.xml.in │ │ │ │ │ ├── manpages.xsl.in │ │ │ │ │ └── stylesheet.xsl │ │ │ │ ├── include │ │ │ │ │ ├── jemalloc │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── arena.h │ │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ │ ├── bitmap.h │ │ │ │ │ │ │ ├── chunk.h │ │ │ │ │ │ │ ├── chunk_dss.h │ │ │ │ │ │ │ ├── chunk_mmap.h │ │ │ │ │ │ │ ├── ckh.h │ │ │ │ │ │ │ ├── ctl.h │ │ │ │ │ │ │ ├── extent.h │ │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ │ ├── huge.h │ │ │ │ │ │ │ ├── jemalloc_internal.h.in │ │ │ │ │ │ │ ├── jemalloc_internal_defs.h.in │ │ │ │ │ │ │ ├── jemalloc_internal_macros.h │ │ │ │ │ │ │ ├── mb.h │ │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ │ ├── private_namespace.sh │ │ │ │ │ │ │ ├── private_symbols.txt │ │ │ │ │ │ │ ├── private_unnamespace.sh │ │ │ │ │ │ │ ├── prng.h │ │ │ │ │ │ │ ├── prof.h │ │ │ │ │ │ │ ├── public_namespace.sh │ │ │ │ │ │ │ ├── public_unnamespace.sh │ │ │ │ │ │ │ ├── ql.h │ │ │ │ │ │ │ ├── qr.h │ │ │ │ │ │ │ ├── quarantine.h │ │ │ │ │ │ │ ├── rb.h │ │ │ │ │ │ │ ├── rtree.h │ │ │ │ │ │ │ ├── size_classes.sh │ │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ │ ├── tcache.h │ │ │ │ │ │ │ ├── tsd.h │ │ │ │ │ │ │ └── util.h │ │ │ │ │ │ ├── jemalloc.sh │ │ │ │ │ │ ├── jemalloc_defs.h.in │ │ │ │ │ │ ├── jemalloc_macros.h.in │ │ │ │ │ │ ├── jemalloc_mangle.sh │ │ │ │ │ │ ├── jemalloc_protos.h.in │ │ │ │ │ │ └── jemalloc_rename.sh │ │ │ │ │ └── msvc_compat │ │ │ │ │ │ ├── inttypes.h │ │ │ │ │ │ ├── stdbool.h │ │ │ │ │ │ ├── stdint.h │ │ │ │ │ │ └── strings.h │ │ │ │ ├── install-sh │ │ │ │ ├── src │ │ │ │ │ ├── arena.c │ │ │ │ │ ├── atomic.c │ │ │ │ │ ├── base.c │ │ │ │ │ ├── bitmap.c │ │ │ │ │ ├── chunk.c │ │ │ │ │ ├── chunk_dss.c │ │ │ │ │ ├── chunk_mmap.c │ │ │ │ │ ├── ckh.c │ │ │ │ │ ├── ctl.c │ │ │ │ │ ├── extent.c │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── huge.c │ │ │ │ │ ├── jemalloc.c │ │ │ │ │ ├── mb.c │ │ │ │ │ ├── mutex.c │ │ │ │ │ ├── prof.c │ │ │ │ │ ├── quarantine.c │ │ │ │ │ ├── rtree.c │ │ │ │ │ ├── stats.c │ │ │ │ │ ├── tcache.c │ │ │ │ │ ├── tsd.c │ │ │ │ │ ├── util.c │ │ │ │ │ └── zone.c │ │ │ │ └── test │ │ │ │ │ ├── include │ │ │ │ │ └── test │ │ │ │ │ │ ├── SFMT-alti.h │ │ │ │ │ │ ├── SFMT-params.h │ │ │ │ │ │ ├── SFMT-params11213.h │ │ │ │ │ │ ├── SFMT-params1279.h │ │ │ │ │ │ ├── SFMT-params132049.h │ │ │ │ │ │ ├── SFMT-params19937.h │ │ │ │ │ │ ├── SFMT-params216091.h │ │ │ │ │ │ ├── SFMT-params2281.h │ │ │ │ │ │ ├── SFMT-params4253.h │ │ │ │ │ │ ├── SFMT-params44497.h │ │ │ │ │ │ ├── SFMT-params607.h │ │ │ │ │ │ ├── SFMT-params86243.h │ │ │ │ │ │ ├── SFMT-sse2.h │ │ │ │ │ │ ├── SFMT.h │ │ │ │ │ │ ├── jemalloc_test.h.in │ │ │ │ │ │ ├── jemalloc_test_defs.h.in │ │ │ │ │ │ ├── math.h │ │ │ │ │ │ ├── mq.h │ │ │ │ │ │ ├── mtx.h │ │ │ │ │ │ ├── test.h │ │ │ │ │ │ └── thd.h │ │ │ │ │ ├── integration │ │ │ │ │ ├── MALLOCX_ARENA.c │ │ │ │ │ ├── aligned_alloc.c │ │ │ │ │ ├── allocated.c │ │ │ │ │ ├── allocm.c │ │ │ │ │ ├── mallocx.c │ │ │ │ │ ├── mremap.c │ │ │ │ │ ├── posix_memalign.c │ │ │ │ │ ├── rallocm.c │ │ │ │ │ ├── rallocx.c │ │ │ │ │ ├── thread_arena.c │ │ │ │ │ ├── thread_tcache_enabled.c │ │ │ │ │ └── xallocx.c │ │ │ │ │ ├── src │ │ │ │ │ ├── SFMT.c │ │ │ │ │ ├── math.c │ │ │ │ │ ├── mtx.c │ │ │ │ │ ├── test.c │ │ │ │ │ └── thd.c │ │ │ │ │ ├── test.sh.in │ │ │ │ │ └── unit │ │ │ │ │ ├── SFMT.c │ │ │ │ │ ├── bitmap.c │ │ │ │ │ ├── ckh.c │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── junk.c │ │ │ │ │ ├── mallctl.c │ │ │ │ │ ├── math.c │ │ │ │ │ ├── mq.c │ │ │ │ │ ├── mtx.c │ │ │ │ │ ├── prof_accum.c │ │ │ │ │ ├── prof_accum.h │ │ │ │ │ ├── prof_accum_a.c │ │ │ │ │ ├── prof_accum_b.c │ │ │ │ │ ├── prof_gdump.c │ │ │ │ │ ├── prof_idump.c │ │ │ │ │ ├── ql.c │ │ │ │ │ ├── qr.c │ │ │ │ │ ├── quarantine.c │ │ │ │ │ ├── rb.c │ │ │ │ │ ├── rtree.c │ │ │ │ │ ├── stats.c │ │ │ │ │ ├── tsd.c │ │ │ │ │ ├── util.c │ │ │ │ │ └── zero.c │ │ │ ├── linenoise │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.markdown │ │ │ │ ├── example.c │ │ │ │ ├── linenoise.c │ │ │ │ └── linenoise.h │ │ │ ├── lua │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── HISTORY │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── doc │ │ │ │ │ ├── contents.html │ │ │ │ │ ├── cover.png │ │ │ │ │ ├── logo.gif │ │ │ │ │ ├── lua.1 │ │ │ │ │ ├── lua.css │ │ │ │ │ ├── lua.html │ │ │ │ │ ├── luac.1 │ │ │ │ │ ├── luac.html │ │ │ │ │ ├── manual.css │ │ │ │ │ ├── manual.html │ │ │ │ │ └── readme.html │ │ │ │ ├── etc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── all.c │ │ │ │ │ ├── lua.hpp │ │ │ │ │ ├── lua.ico │ │ │ │ │ ├── lua.pc │ │ │ │ │ ├── luavs.bat │ │ │ │ │ ├── min.c │ │ │ │ │ ├── noparser.c │ │ │ │ │ └── strict.lua │ │ │ │ ├── src │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fpconv.c │ │ │ │ │ ├── fpconv.h │ │ │ │ │ ├── lapi.c │ │ │ │ │ ├── lapi.h │ │ │ │ │ ├── lauxlib.c │ │ │ │ │ ├── lauxlib.h │ │ │ │ │ ├── lbaselib.c │ │ │ │ │ ├── lcode.c │ │ │ │ │ ├── lcode.h │ │ │ │ │ ├── ldblib.c │ │ │ │ │ ├── ldebug.c │ │ │ │ │ ├── ldebug.h │ │ │ │ │ ├── ldo.c │ │ │ │ │ ├── ldo.h │ │ │ │ │ ├── ldump.c │ │ │ │ │ ├── lfunc.c │ │ │ │ │ ├── lfunc.h │ │ │ │ │ ├── lgc.c │ │ │ │ │ ├── lgc.h │ │ │ │ │ ├── linit.c │ │ │ │ │ ├── liolib.c │ │ │ │ │ ├── llex.c │ │ │ │ │ ├── llex.h │ │ │ │ │ ├── llimits.h │ │ │ │ │ ├── lmathlib.c │ │ │ │ │ ├── lmem.c │ │ │ │ │ ├── lmem.h │ │ │ │ │ ├── loadlib.c │ │ │ │ │ ├── lobject.c │ │ │ │ │ ├── lobject.h │ │ │ │ │ ├── lopcodes.c │ │ │ │ │ ├── lopcodes.h │ │ │ │ │ ├── loslib.c │ │ │ │ │ ├── lparser.c │ │ │ │ │ ├── lparser.h │ │ │ │ │ ├── lstate.c │ │ │ │ │ ├── lstate.h │ │ │ │ │ ├── lstring.c │ │ │ │ │ ├── lstring.h │ │ │ │ │ ├── lstrlib.c │ │ │ │ │ ├── ltable.c │ │ │ │ │ ├── ltable.h │ │ │ │ │ ├── ltablib.c │ │ │ │ │ ├── ltm.c │ │ │ │ │ ├── ltm.h │ │ │ │ │ ├── lua.c │ │ │ │ │ ├── lua.h │ │ │ │ │ ├── lua_bit.c │ │ │ │ │ ├── lua_cjson.c │ │ │ │ │ ├── lua_cmsgpack.c │ │ │ │ │ ├── lua_struct.c │ │ │ │ │ ├── luac.c │ │ │ │ │ ├── luaconf.h │ │ │ │ │ ├── lualib.h │ │ │ │ │ ├── lundump.c │ │ │ │ │ ├── lundump.h │ │ │ │ │ ├── lvm.c │ │ │ │ │ ├── lvm.h │ │ │ │ │ ├── lzio.c │ │ │ │ │ ├── lzio.h │ │ │ │ │ ├── print.c │ │ │ │ │ ├── strbuf.c │ │ │ │ │ └── strbuf.h │ │ │ │ └── test │ │ │ │ │ ├── README │ │ │ │ │ ├── bisect.lua │ │ │ │ │ ├── cf.lua │ │ │ │ │ ├── echo.lua │ │ │ │ │ ├── env.lua │ │ │ │ │ ├── factorial.lua │ │ │ │ │ ├── fib.lua │ │ │ │ │ ├── fibfor.lua │ │ │ │ │ ├── globals.lua │ │ │ │ │ ├── hello.lua │ │ │ │ │ ├── life.lua │ │ │ │ │ ├── luac.lua │ │ │ │ │ ├── printf.lua │ │ │ │ │ ├── readonly.lua │ │ │ │ │ ├── sieve.lua │ │ │ │ │ ├── sort.lua │ │ │ │ │ ├── table.lua │ │ │ │ │ ├── trace-calls.lua │ │ │ │ │ ├── trace-globals.lua │ │ │ │ │ └── xd.lua │ │ │ └── update-jemalloc.sh │ │ ├── redis.conf │ │ ├── runtest │ │ ├── runtest-sentinel │ │ ├── sentinel.conf │ │ ├── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── Makefile.dep │ │ │ ├── adlist.c │ │ │ ├── adlist.h │ │ │ ├── ae.c │ │ │ ├── ae.h │ │ │ ├── ae_epoll.c │ │ │ ├── ae_evport.c │ │ │ ├── ae_kqueue.c │ │ │ ├── ae_select.c │ │ │ ├── anet.c │ │ │ ├── anet.h │ │ │ ├── aof.c │ │ │ ├── asciilogo.h │ │ │ ├── bio.c │ │ │ ├── bio.h │ │ │ ├── bitops.c │ │ │ ├── config.c │ │ │ ├── config.h │ │ │ ├── crc32.c │ │ │ ├── crc64.c │ │ │ ├── crc64.h │ │ │ ├── db.c │ │ │ ├── debug.c │ │ │ ├── dict.c │ │ │ ├── dict.h │ │ │ ├── endianconv.c │ │ │ ├── endianconv.h │ │ │ ├── fmacros.h │ │ │ ├── help.h │ │ │ ├── hyperloglog.c │ │ │ ├── intset.c │ │ │ ├── intset.h │ │ │ ├── latency.c │ │ │ ├── latency.h │ │ │ ├── lzf.h │ │ │ ├── lzfP.h │ │ │ ├── lzf_c.c │ │ │ ├── lzf_d.c │ │ │ ├── memtest.c │ │ │ ├── migrate.c │ │ │ ├── mkreleasehdr.sh │ │ │ ├── multi.c │ │ │ ├── networking.c │ │ │ ├── notify.c │ │ │ ├── object.c │ │ │ ├── pqsort.c │ │ │ ├── pqsort.h │ │ │ ├── pubsub.c │ │ │ ├── rand.c │ │ │ ├── rand.h │ │ │ ├── rdb.c │ │ │ ├── rdb.h │ │ │ ├── redis-benchmark.c │ │ │ ├── redis-check-aof.c │ │ │ ├── redis-check-dump.c │ │ │ ├── redis-cli.c │ │ │ ├── redis.c │ │ │ ├── redis.h │ │ │ ├── redisassert.h │ │ │ ├── release.c │ │ │ ├── replication.c │ │ │ ├── rio.c │ │ │ ├── rio.h │ │ │ ├── scripting.c │ │ │ ├── sds.c │ │ │ ├── sds.h │ │ │ ├── sentinel.c │ │ │ ├── setproctitle.c │ │ │ ├── sha1.c │ │ │ ├── sha1.h │ │ │ ├── slots.c │ │ │ ├── slowlog.c │ │ │ ├── slowlog.h │ │ │ ├── solarisfixes.h │ │ │ ├── sort.c │ │ │ ├── sparkline.c │ │ │ ├── sparkline.h │ │ │ ├── syncio.c │ │ │ ├── t_hash.c │ │ │ ├── t_list.c │ │ │ ├── t_set.c │ │ │ ├── t_string.c │ │ │ ├── t_zset.c │ │ │ ├── testhelp.h │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── valgrind.sup │ │ │ ├── version.h │ │ │ ├── ziplist.c │ │ │ ├── ziplist.h │ │ │ ├── zipmap.c │ │ │ ├── zipmap.h │ │ │ ├── zmalloc.c │ │ │ └── zmalloc.h │ │ ├── tests │ │ │ ├── assets │ │ │ │ └── default.conf │ │ │ ├── helpers │ │ │ │ ├── bg_complex_data.tcl │ │ │ │ └── gen_write_load.tcl │ │ │ ├── instances.tcl │ │ │ ├── integration │ │ │ │ ├── aof-race.tcl │ │ │ │ ├── aof.tcl │ │ │ │ ├── convert-zipmap-hash-on-load.tcl │ │ │ │ ├── rdb.tcl │ │ │ │ ├── redis-cli.tcl │ │ │ │ ├── replication-2.tcl │ │ │ │ ├── replication-3.tcl │ │ │ │ ├── replication-4.tcl │ │ │ │ ├── replication-psync.tcl │ │ │ │ └── replication.tcl │ │ │ ├── sentinel │ │ │ │ ├── run.tcl │ │ │ │ ├── tests │ │ │ │ │ ├── 00-base.tcl │ │ │ │ │ ├── 01-conf-update.tcl │ │ │ │ │ ├── 02-slaves-reconf.tcl │ │ │ │ │ ├── 03-runtime-reconf.tcl │ │ │ │ │ ├── 04-slave-selection.tcl │ │ │ │ │ ├── 05-manual.tcl │ │ │ │ │ ├── 06-ckquorum.tcl │ │ │ │ │ └── includes │ │ │ │ │ │ └── init-tests.tcl │ │ │ │ └── tmp │ │ │ │ │ └── .gitignore │ │ │ ├── support │ │ │ │ ├── redis.tcl │ │ │ │ ├── server.tcl │ │ │ │ ├── test.tcl │ │ │ │ ├── tmpfile.tcl │ │ │ │ └── util.tcl │ │ │ ├── test_helper.tcl │ │ │ └── unit │ │ │ │ ├── aofrw.tcl │ │ │ │ ├── auth.tcl │ │ │ │ ├── basic.tcl │ │ │ │ ├── bitops.tcl │ │ │ │ ├── dump.tcl │ │ │ │ ├── expire.tcl │ │ │ │ ├── hyperloglog.tcl │ │ │ │ ├── introspection.tcl │ │ │ │ ├── latency-monitor.tcl │ │ │ │ ├── limits.tcl │ │ │ │ ├── maxmemory.tcl │ │ │ │ ├── memefficiency.tcl │ │ │ │ ├── multi.tcl │ │ │ │ ├── obuf-limits.tcl │ │ │ │ ├── other.tcl │ │ │ │ ├── printver.tcl │ │ │ │ ├── protocol.tcl │ │ │ │ ├── pubsub.tcl │ │ │ │ ├── quit.tcl │ │ │ │ ├── scan.tcl │ │ │ │ ├── scripting.tcl │ │ │ │ ├── slowlog.tcl │ │ │ │ ├── sort.tcl │ │ │ │ └── type │ │ │ │ ├── hash.tcl │ │ │ │ ├── list-2.tcl │ │ │ │ ├── list-3.tcl │ │ │ │ ├── list-common.tcl │ │ │ │ ├── list.tcl │ │ │ │ ├── set.tcl │ │ │ │ └── zset.tcl │ │ └── utils │ │ │ ├── build-static-symbols.tcl │ │ │ ├── generate-command-help.rb │ │ │ ├── hyperloglog │ │ │ ├── .gitignore │ │ │ ├── hll-err.rb │ │ │ └── hll-gnuplot-graph.rb │ │ │ ├── install_server.sh │ │ │ ├── mkrelease.sh │ │ │ ├── redis-copy.rb │ │ │ ├── redis-sha1.rb │ │ │ ├── redis_init_script │ │ │ ├── redis_init_script.tpl │ │ │ ├── speed-regression.tcl │ │ │ └── whatisdoing.sh │ ├── redis-3.2.4 │ │ ├── .gitignore │ │ ├── 00-RELEASENOTES │ │ ├── 0000-redis.patch │ │ ├── 0001-slotsscan.patch │ │ ├── 0002-rehash.patch │ │ ├── BUGS │ │ ├── CONTRIBUTING │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── MANIFESTO │ │ ├── Makefile │ │ ├── README.md │ │ ├── deps │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── geohash-int │ │ │ │ ├── Makefile │ │ │ │ ├── geohash.c │ │ │ │ ├── geohash.h │ │ │ │ ├── geohash_helper.c │ │ │ │ └── geohash_helper.h │ │ │ ├── hiredis │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── adapters │ │ │ │ │ ├── ae.h │ │ │ │ │ ├── libev.h │ │ │ │ │ ├── libevent.h │ │ │ │ │ └── libuv.h │ │ │ │ ├── async.c │ │ │ │ ├── async.h │ │ │ │ ├── dict.c │ │ │ │ ├── dict.h │ │ │ │ ├── examples │ │ │ │ │ ├── example-ae.c │ │ │ │ │ ├── example-libev.c │ │ │ │ │ ├── example-libevent.c │ │ │ │ │ ├── example-libuv.c │ │ │ │ │ └── example.c │ │ │ │ ├── fmacros.h │ │ │ │ ├── hiredis.c │ │ │ │ ├── hiredis.h │ │ │ │ ├── net.c │ │ │ │ ├── net.h │ │ │ │ ├── sds.c │ │ │ │ ├── sds.h │ │ │ │ ├── sdsalloc.h │ │ │ │ ├── test.c │ │ │ │ └── zmalloc.h │ │ │ ├── jemalloc │ │ │ │ ├── .autom4te.cfg │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── autogen.sh │ │ │ │ ├── bin │ │ │ │ │ ├── jemalloc-config.in │ │ │ │ │ ├── jemalloc.sh.in │ │ │ │ │ └── jeprof.in │ │ │ │ ├── build-aux │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.sub │ │ │ │ │ └── install-sh │ │ │ │ ├── config.stamp.in │ │ │ │ ├── configure.ac │ │ │ │ ├── coverage.sh │ │ │ │ ├── doc │ │ │ │ │ ├── html.xsl.in │ │ │ │ │ ├── jemalloc.xml.in │ │ │ │ │ ├── manpages.xsl.in │ │ │ │ │ └── stylesheet.xsl │ │ │ │ ├── include │ │ │ │ │ ├── jemalloc │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── arena.h │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ │ ├── bitmap.h │ │ │ │ │ │ │ ├── chunk.h │ │ │ │ │ │ │ ├── chunk_dss.h │ │ │ │ │ │ │ ├── chunk_mmap.h │ │ │ │ │ │ │ ├── ckh.h │ │ │ │ │ │ │ ├── ctl.h │ │ │ │ │ │ │ ├── extent.h │ │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ │ ├── huge.h │ │ │ │ │ │ │ ├── jemalloc_internal.h.in │ │ │ │ │ │ │ ├── jemalloc_internal_decls.h │ │ │ │ │ │ │ ├── jemalloc_internal_defs.h.in │ │ │ │ │ │ │ ├── jemalloc_internal_macros.h │ │ │ │ │ │ │ ├── mb.h │ │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ │ ├── nstime.h │ │ │ │ │ │ │ ├── pages.h │ │ │ │ │ │ │ ├── ph.h │ │ │ │ │ │ │ ├── private_namespace.sh │ │ │ │ │ │ │ ├── private_symbols.txt │ │ │ │ │ │ │ ├── private_unnamespace.sh │ │ │ │ │ │ │ ├── prng.h │ │ │ │ │ │ │ ├── prof.h │ │ │ │ │ │ │ ├── public_namespace.sh │ │ │ │ │ │ │ ├── public_unnamespace.sh │ │ │ │ │ │ │ ├── ql.h │ │ │ │ │ │ │ ├── qr.h │ │ │ │ │ │ │ ├── quarantine.h │ │ │ │ │ │ │ ├── rb.h │ │ │ │ │ │ │ ├── rtree.h │ │ │ │ │ │ │ ├── size_classes.sh │ │ │ │ │ │ │ ├── smoothstep.h │ │ │ │ │ │ │ ├── smoothstep.sh │ │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ │ ├── tcache.h │ │ │ │ │ │ │ ├── ticker.h │ │ │ │ │ │ │ ├── tsd.h │ │ │ │ │ │ │ ├── util.h │ │ │ │ │ │ │ ├── valgrind.h │ │ │ │ │ │ │ └── witness.h │ │ │ │ │ │ ├── jemalloc.sh │ │ │ │ │ │ ├── jemalloc_defs.h.in │ │ │ │ │ │ ├── jemalloc_macros.h.in │ │ │ │ │ │ ├── jemalloc_mangle.sh │ │ │ │ │ │ ├── jemalloc_protos.h.in │ │ │ │ │ │ ├── jemalloc_rename.sh │ │ │ │ │ │ └── jemalloc_typedefs.h.in │ │ │ │ │ └── msvc_compat │ │ │ │ │ │ ├── C99 │ │ │ │ │ │ ├── stdbool.h │ │ │ │ │ │ └── stdint.h │ │ │ │ │ │ ├── strings.h │ │ │ │ │ │ └── windows_extra.h │ │ │ │ ├── jemalloc.pc.in │ │ │ │ ├── msvc │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── jemalloc_vc2015.sln │ │ │ │ │ └── projects │ │ │ │ │ │ └── vc2015 │ │ │ │ │ │ ├── jemalloc │ │ │ │ │ │ ├── jemalloc.vcxproj │ │ │ │ │ │ └── jemalloc.vcxproj.filters │ │ │ │ │ │ └── test_threads │ │ │ │ │ │ ├── test_threads.cpp │ │ │ │ │ │ ├── test_threads.h │ │ │ │ │ │ ├── test_threads.vcxproj │ │ │ │ │ │ ├── test_threads.vcxproj.filters │ │ │ │ │ │ └── test_threads_main.cpp │ │ │ │ ├── src │ │ │ │ │ ├── arena.c │ │ │ │ │ ├── atomic.c │ │ │ │ │ ├── base.c │ │ │ │ │ ├── bitmap.c │ │ │ │ │ ├── chunk.c │ │ │ │ │ ├── chunk_dss.c │ │ │ │ │ ├── chunk_mmap.c │ │ │ │ │ ├── ckh.c │ │ │ │ │ ├── ctl.c │ │ │ │ │ ├── extent.c │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── huge.c │ │ │ │ │ ├── jemalloc.c │ │ │ │ │ ├── mb.c │ │ │ │ │ ├── mutex.c │ │ │ │ │ ├── nstime.c │ │ │ │ │ ├── pages.c │ │ │ │ │ ├── prng.c │ │ │ │ │ ├── prof.c │ │ │ │ │ ├── quarantine.c │ │ │ │ │ ├── rtree.c │ │ │ │ │ ├── stats.c │ │ │ │ │ ├── tcache.c │ │ │ │ │ ├── ticker.c │ │ │ │ │ ├── tsd.c │ │ │ │ │ ├── util.c │ │ │ │ │ ├── valgrind.c │ │ │ │ │ ├── witness.c │ │ │ │ │ └── zone.c │ │ │ │ └── test │ │ │ │ │ ├── include │ │ │ │ │ └── test │ │ │ │ │ │ ├── SFMT-alti.h │ │ │ │ │ │ ├── SFMT-params.h │ │ │ │ │ │ ├── SFMT-params11213.h │ │ │ │ │ │ ├── SFMT-params1279.h │ │ │ │ │ │ ├── SFMT-params132049.h │ │ │ │ │ │ ├── SFMT-params19937.h │ │ │ │ │ │ ├── SFMT-params216091.h │ │ │ │ │ │ ├── SFMT-params2281.h │ │ │ │ │ │ ├── SFMT-params4253.h │ │ │ │ │ │ ├── SFMT-params44497.h │ │ │ │ │ │ ├── SFMT-params607.h │ │ │ │ │ │ ├── SFMT-params86243.h │ │ │ │ │ │ ├── SFMT-sse2.h │ │ │ │ │ │ ├── SFMT.h │ │ │ │ │ │ ├── btalloc.h │ │ │ │ │ │ ├── jemalloc_test.h.in │ │ │ │ │ │ ├── jemalloc_test_defs.h.in │ │ │ │ │ │ ├── math.h │ │ │ │ │ │ ├── mq.h │ │ │ │ │ │ ├── mtx.h │ │ │ │ │ │ ├── test.h │ │ │ │ │ │ ├── thd.h │ │ │ │ │ │ └── timer.h │ │ │ │ │ ├── integration │ │ │ │ │ ├── MALLOCX_ARENA.c │ │ │ │ │ ├── aligned_alloc.c │ │ │ │ │ ├── allocated.c │ │ │ │ │ ├── chunk.c │ │ │ │ │ ├── mallocx.c │ │ │ │ │ ├── overflow.c │ │ │ │ │ ├── posix_memalign.c │ │ │ │ │ ├── rallocx.c │ │ │ │ │ ├── sdallocx.c │ │ │ │ │ ├── thread_arena.c │ │ │ │ │ ├── thread_tcache_enabled.c │ │ │ │ │ └── xallocx.c │ │ │ │ │ ├── src │ │ │ │ │ ├── SFMT.c │ │ │ │ │ ├── btalloc.c │ │ │ │ │ ├── btalloc_0.c │ │ │ │ │ ├── btalloc_1.c │ │ │ │ │ ├── math.c │ │ │ │ │ ├── mq.c │ │ │ │ │ ├── mtx.c │ │ │ │ │ ├── test.c │ │ │ │ │ ├── thd.c │ │ │ │ │ └── timer.c │ │ │ │ │ ├── stress │ │ │ │ │ └── microbench.c │ │ │ │ │ ├── test.sh.in │ │ │ │ │ └── unit │ │ │ │ │ ├── SFMT.c │ │ │ │ │ ├── a0.c │ │ │ │ │ ├── arena_reset.c │ │ │ │ │ ├── atomic.c │ │ │ │ │ ├── bitmap.c │ │ │ │ │ ├── ckh.c │ │ │ │ │ ├── decay.c │ │ │ │ │ ├── fork.c │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── junk.c │ │ │ │ │ ├── junk_alloc.c │ │ │ │ │ ├── junk_free.c │ │ │ │ │ ├── lg_chunk.c │ │ │ │ │ ├── mallctl.c │ │ │ │ │ ├── math.c │ │ │ │ │ ├── mq.c │ │ │ │ │ ├── mtx.c │ │ │ │ │ ├── nstime.c │ │ │ │ │ ├── ph.c │ │ │ │ │ ├── prng.c │ │ │ │ │ ├── prof_accum.c │ │ │ │ │ ├── prof_active.c │ │ │ │ │ ├── prof_gdump.c │ │ │ │ │ ├── prof_idump.c │ │ │ │ │ ├── prof_reset.c │ │ │ │ │ ├── prof_thread_name.c │ │ │ │ │ ├── ql.c │ │ │ │ │ ├── qr.c │ │ │ │ │ ├── quarantine.c │ │ │ │ │ ├── rb.c │ │ │ │ │ ├── rtree.c │ │ │ │ │ ├── run_quantize.c │ │ │ │ │ ├── size_classes.c │ │ │ │ │ ├── smoothstep.c │ │ │ │ │ ├── stats.c │ │ │ │ │ ├── ticker.c │ │ │ │ │ ├── tsd.c │ │ │ │ │ ├── util.c │ │ │ │ │ ├── witness.c │ │ │ │ │ └── zero.c │ │ │ ├── linenoise │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.markdown │ │ │ │ ├── example.c │ │ │ │ ├── linenoise.c │ │ │ │ └── linenoise.h │ │ │ ├── lua │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── HISTORY │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── doc │ │ │ │ │ ├── contents.html │ │ │ │ │ ├── cover.png │ │ │ │ │ ├── logo.gif │ │ │ │ │ ├── lua.1 │ │ │ │ │ ├── lua.css │ │ │ │ │ ├── lua.html │ │ │ │ │ ├── luac.1 │ │ │ │ │ ├── luac.html │ │ │ │ │ ├── manual.css │ │ │ │ │ ├── manual.html │ │ │ │ │ └── readme.html │ │ │ │ ├── etc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── all.c │ │ │ │ │ ├── lua.hpp │ │ │ │ │ ├── lua.ico │ │ │ │ │ ├── lua.pc │ │ │ │ │ ├── luavs.bat │ │ │ │ │ ├── min.c │ │ │ │ │ ├── noparser.c │ │ │ │ │ └── strict.lua │ │ │ │ ├── src │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fpconv.c │ │ │ │ │ ├── fpconv.h │ │ │ │ │ ├── lapi.c │ │ │ │ │ ├── lapi.h │ │ │ │ │ ├── lauxlib.c │ │ │ │ │ ├── lauxlib.h │ │ │ │ │ ├── lbaselib.c │ │ │ │ │ ├── lcode.c │ │ │ │ │ ├── lcode.h │ │ │ │ │ ├── ldblib.c │ │ │ │ │ ├── ldebug.c │ │ │ │ │ ├── ldebug.h │ │ │ │ │ ├── ldo.c │ │ │ │ │ ├── ldo.h │ │ │ │ │ ├── ldump.c │ │ │ │ │ ├── lfunc.c │ │ │ │ │ ├── lfunc.h │ │ │ │ │ ├── lgc.c │ │ │ │ │ ├── lgc.h │ │ │ │ │ ├── linit.c │ │ │ │ │ ├── liolib.c │ │ │ │ │ ├── llex.c │ │ │ │ │ ├── llex.h │ │ │ │ │ ├── llimits.h │ │ │ │ │ ├── lmathlib.c │ │ │ │ │ ├── lmem.c │ │ │ │ │ ├── lmem.h │ │ │ │ │ ├── loadlib.c │ │ │ │ │ ├── lobject.c │ │ │ │ │ ├── lobject.h │ │ │ │ │ ├── lopcodes.c │ │ │ │ │ ├── lopcodes.h │ │ │ │ │ ├── loslib.c │ │ │ │ │ ├── lparser.c │ │ │ │ │ ├── lparser.h │ │ │ │ │ ├── lstate.c │ │ │ │ │ ├── lstate.h │ │ │ │ │ ├── lstring.c │ │ │ │ │ ├── lstring.h │ │ │ │ │ ├── lstrlib.c │ │ │ │ │ ├── ltable.c │ │ │ │ │ ├── ltable.h │ │ │ │ │ ├── ltablib.c │ │ │ │ │ ├── ltm.c │ │ │ │ │ ├── ltm.h │ │ │ │ │ ├── lua.c │ │ │ │ │ ├── lua.h │ │ │ │ │ ├── lua_bit.c │ │ │ │ │ ├── lua_cjson.c │ │ │ │ │ ├── lua_cmsgpack.c │ │ │ │ │ ├── lua_struct.c │ │ │ │ │ ├── luac.c │ │ │ │ │ ├── luaconf.h │ │ │ │ │ ├── lualib.h │ │ │ │ │ ├── lundump.c │ │ │ │ │ ├── lundump.h │ │ │ │ │ ├── lvm.c │ │ │ │ │ ├── lvm.h │ │ │ │ │ ├── lzio.c │ │ │ │ │ ├── lzio.h │ │ │ │ │ ├── print.c │ │ │ │ │ ├── strbuf.c │ │ │ │ │ └── strbuf.h │ │ │ │ └── test │ │ │ │ │ ├── README │ │ │ │ │ ├── bisect.lua │ │ │ │ │ ├── cf.lua │ │ │ │ │ ├── echo.lua │ │ │ │ │ ├── env.lua │ │ │ │ │ ├── factorial.lua │ │ │ │ │ ├── fib.lua │ │ │ │ │ ├── fibfor.lua │ │ │ │ │ ├── globals.lua │ │ │ │ │ ├── hello.lua │ │ │ │ │ ├── life.lua │ │ │ │ │ ├── luac.lua │ │ │ │ │ ├── printf.lua │ │ │ │ │ ├── readonly.lua │ │ │ │ │ ├── sieve.lua │ │ │ │ │ ├── sort.lua │ │ │ │ │ ├── table.lua │ │ │ │ │ ├── trace-calls.lua │ │ │ │ │ ├── trace-globals.lua │ │ │ │ │ └── xd.lua │ │ │ └── update-jemalloc.sh │ │ ├── redis.conf │ │ ├── runtest │ │ ├── runtest-cluster │ │ ├── runtest-sentinel │ │ ├── sentinel.conf │ │ ├── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── Makefile.dep │ │ │ ├── adlist.c │ │ │ ├── adlist.h │ │ │ ├── ae.c │ │ │ ├── ae.h │ │ │ ├── ae_epoll.c │ │ │ ├── ae_evport.c │ │ │ ├── ae_kqueue.c │ │ │ ├── ae_select.c │ │ │ ├── anet.c │ │ │ ├── anet.h │ │ │ ├── aof.c │ │ │ ├── asciilogo.h │ │ │ ├── bio.c │ │ │ ├── bio.h │ │ │ ├── bitops.c │ │ │ ├── blocked.c │ │ │ ├── cluster.c │ │ │ ├── cluster.h │ │ │ ├── config.c │ │ │ ├── config.h │ │ │ ├── crc16.c │ │ │ ├── crc32.c │ │ │ ├── crc64.c │ │ │ ├── crc64.h │ │ │ ├── db.c │ │ │ ├── debug.c │ │ │ ├── debugmacro.h │ │ │ ├── dict.c │ │ │ ├── dict.h │ │ │ ├── endianconv.c │ │ │ ├── endianconv.h │ │ │ ├── fmacros.h │ │ │ ├── geo.c │ │ │ ├── geo.h │ │ │ ├── help.h │ │ │ ├── hyperloglog.c │ │ │ ├── intset.c │ │ │ ├── intset.h │ │ │ ├── latency.c │ │ │ ├── latency.h │ │ │ ├── lzf.h │ │ │ ├── lzfP.h │ │ │ ├── lzf_c.c │ │ │ ├── lzf_d.c │ │ │ ├── memtest.c │ │ │ ├── mkreleasehdr.sh │ │ │ ├── multi.c │ │ │ ├── networking.c │ │ │ ├── notify.c │ │ │ ├── object.c │ │ │ ├── pqsort.c │ │ │ ├── pqsort.h │ │ │ ├── pubsub.c │ │ │ ├── quicklist.c │ │ │ ├── quicklist.h │ │ │ ├── rand.c │ │ │ ├── rand.h │ │ │ ├── rdb.c │ │ │ ├── rdb.h │ │ │ ├── redis-benchmark.c │ │ │ ├── redis-check-aof.c │ │ │ ├── redis-check-rdb.c │ │ │ ├── redis-cli.c │ │ │ ├── redis-trib.rb │ │ │ ├── redisassert.h │ │ │ ├── release.c │ │ │ ├── replication.c │ │ │ ├── rio.c │ │ │ ├── rio.h │ │ │ ├── scripting.c │ │ │ ├── sds.c │ │ │ ├── sds.h │ │ │ ├── sdsalloc.h │ │ │ ├── sentinel.c │ │ │ ├── server.c │ │ │ ├── server.h │ │ │ ├── setproctitle.c │ │ │ ├── sha1.c │ │ │ ├── sha1.h │ │ │ ├── slots.c │ │ │ ├── slowlog.c │ │ │ ├── slowlog.h │ │ │ ├── solarisfixes.h │ │ │ ├── sort.c │ │ │ ├── sparkline.c │ │ │ ├── sparkline.h │ │ │ ├── syncio.c │ │ │ ├── t_hash.c │ │ │ ├── t_list.c │ │ │ ├── t_set.c │ │ │ ├── t_string.c │ │ │ ├── t_zset.c │ │ │ ├── testhelp.h │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── valgrind.sup │ │ │ ├── version.h │ │ │ ├── ziplist.c │ │ │ ├── ziplist.h │ │ │ ├── zipmap.c │ │ │ ├── zipmap.h │ │ │ ├── zmalloc.c │ │ │ └── zmalloc.h │ │ ├── tests │ │ │ ├── assets │ │ │ │ └── default.conf │ │ │ ├── cluster │ │ │ │ ├── cluster.tcl │ │ │ │ ├── run.tcl │ │ │ │ ├── tests │ │ │ │ │ ├── 00-base.tcl │ │ │ │ │ ├── 01-faildet.tcl │ │ │ │ │ ├── 02-failover.tcl │ │ │ │ │ ├── 03-failover-loop.tcl │ │ │ │ │ ├── 04-resharding.tcl │ │ │ │ │ ├── 05-slave-selection.tcl │ │ │ │ │ ├── 06-slave-stop-cond.tcl │ │ │ │ │ ├── 07-replica-migration.tcl │ │ │ │ │ ├── 08-update-msg.tcl │ │ │ │ │ ├── 09-pubsub.tcl │ │ │ │ │ ├── 10-manual-failover.tcl │ │ │ │ │ ├── 11-manual-takeover.tcl │ │ │ │ │ ├── 12-replica-migration-2.tcl │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── onlydots.tcl │ │ │ │ │ └── includes │ │ │ │ │ │ └── init-tests.tcl │ │ │ │ └── tmp │ │ │ │ │ └── .gitignore │ │ │ ├── helpers │ │ │ │ ├── bg_complex_data.tcl │ │ │ │ └── gen_write_load.tcl │ │ │ ├── instances.tcl │ │ │ ├── integration │ │ │ │ ├── aof-race.tcl │ │ │ │ ├── aof.tcl │ │ │ │ ├── convert-zipmap-hash-on-load.tcl │ │ │ │ ├── logging.tcl │ │ │ │ ├── rdb.tcl │ │ │ │ ├── redis-cli.tcl │ │ │ │ ├── replication-2.tcl │ │ │ │ ├── replication-3.tcl │ │ │ │ ├── replication-4.tcl │ │ │ │ ├── replication-psync.tcl │ │ │ │ └── replication.tcl │ │ │ ├── sentinel │ │ │ │ ├── run.tcl │ │ │ │ ├── tests │ │ │ │ │ ├── 00-base.tcl │ │ │ │ │ ├── 01-conf-update.tcl │ │ │ │ │ ├── 02-slaves-reconf.tcl │ │ │ │ │ ├── 03-runtime-reconf.tcl │ │ │ │ │ ├── 04-slave-selection.tcl │ │ │ │ │ ├── 05-manual.tcl │ │ │ │ │ ├── 06-ckquorum.tcl │ │ │ │ │ ├── 07-down-conditions.tcl │ │ │ │ │ └── includes │ │ │ │ │ │ └── init-tests.tcl │ │ │ │ └── tmp │ │ │ │ │ └── .gitignore │ │ │ ├── support │ │ │ │ ├── cluster.tcl │ │ │ │ ├── redis.tcl │ │ │ │ ├── server.tcl │ │ │ │ ├── test.tcl │ │ │ │ ├── tmpfile.tcl │ │ │ │ └── util.tcl │ │ │ ├── test_helper.tcl │ │ │ └── unit │ │ │ │ ├── aofrw.tcl │ │ │ │ ├── auth.tcl │ │ │ │ ├── bitfield.tcl │ │ │ │ ├── bitops.tcl │ │ │ │ ├── dump.tcl │ │ │ │ ├── expire.tcl │ │ │ │ ├── geo.tcl │ │ │ │ ├── hyperloglog.tcl │ │ │ │ ├── introspection-2.tcl │ │ │ │ ├── introspection.tcl │ │ │ │ ├── keyspace.tcl │ │ │ │ ├── latency-monitor.tcl │ │ │ │ ├── limits.tcl │ │ │ │ ├── maxmemory.tcl │ │ │ │ ├── memefficiency.tcl │ │ │ │ ├── multi.tcl │ │ │ │ ├── obuf-limits.tcl │ │ │ │ ├── other.tcl │ │ │ │ ├── printver.tcl │ │ │ │ ├── protocol.tcl │ │ │ │ ├── pubsub.tcl │ │ │ │ ├── quit.tcl │ │ │ │ ├── scan.tcl │ │ │ │ ├── scripting.tcl │ │ │ │ ├── slowlog.tcl │ │ │ │ ├── sort.tcl │ │ │ │ └── type │ │ │ │ ├── hash.tcl │ │ │ │ ├── incr.tcl │ │ │ │ ├── list-2.tcl │ │ │ │ ├── list-3.tcl │ │ │ │ ├── list-common.tcl │ │ │ │ ├── list.tcl │ │ │ │ ├── set.tcl │ │ │ │ ├── string.tcl │ │ │ │ └── zset.tcl │ │ └── utils │ │ │ ├── build-static-symbols.tcl │ │ │ ├── cluster_fail_time.tcl │ │ │ ├── corrupt_rdb.c │ │ │ ├── create-cluster │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ └── create-cluster │ │ │ ├── generate-command-help.rb │ │ │ ├── hashtable │ │ │ ├── README │ │ │ └── rehashing.c │ │ │ ├── hyperloglog │ │ │ ├── .gitignore │ │ │ ├── hll-err.rb │ │ │ └── hll-gnuplot-graph.rb │ │ │ ├── install_server.sh │ │ │ ├── lru │ │ │ ├── README │ │ │ └── test-lru.rb │ │ │ ├── redis-copy.rb │ │ │ ├── redis-sha1.rb │ │ │ ├── redis_init_script │ │ │ ├── redis_init_script.tpl │ │ │ ├── releasetools │ │ │ ├── 01_create_tarball.sh │ │ │ ├── 02_upload_tarball.sh │ │ │ ├── 03_test_release.sh │ │ │ └── 04_release_hash.sh │ │ │ ├── speed-regression.tcl │ │ │ └── whatisdoing.sh │ ├── redis-3.2.8 │ │ ├── .gitignore │ │ ├── 00-RELEASENOTES │ │ ├── BUGS │ │ ├── CONTRIBUTING │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── MANIFESTO │ │ ├── Makefile │ │ ├── README.md │ │ ├── deps │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── geohash-int │ │ │ │ ├── Makefile │ │ │ │ ├── geohash.c │ │ │ │ ├── geohash.h │ │ │ │ ├── geohash_helper.c │ │ │ │ └── geohash_helper.h │ │ │ ├── hiredis │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── adapters │ │ │ │ │ ├── ae.h │ │ │ │ │ ├── libev.h │ │ │ │ │ ├── libevent.h │ │ │ │ │ └── libuv.h │ │ │ │ ├── async.c │ │ │ │ ├── async.h │ │ │ │ ├── dict.c │ │ │ │ ├── dict.h │ │ │ │ ├── examples │ │ │ │ │ ├── example-ae.c │ │ │ │ │ ├── example-libev.c │ │ │ │ │ ├── example-libevent.c │ │ │ │ │ ├── example-libuv.c │ │ │ │ │ └── example.c │ │ │ │ ├── fmacros.h │ │ │ │ ├── hiredis.c │ │ │ │ ├── hiredis.h │ │ │ │ ├── net.c │ │ │ │ ├── net.h │ │ │ │ ├── sds.c │ │ │ │ ├── sds.h │ │ │ │ ├── sdsalloc.h │ │ │ │ ├── test.c │ │ │ │ └── zmalloc.h │ │ │ ├── jemalloc │ │ │ │ ├── .autom4te.cfg │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── VERSION │ │ │ │ ├── autogen.sh │ │ │ │ ├── bin │ │ │ │ │ ├── jemalloc-config.in │ │ │ │ │ ├── jemalloc.sh.in │ │ │ │ │ └── jeprof.in │ │ │ │ ├── config.guess │ │ │ │ ├── config.stamp.in │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── coverage.sh │ │ │ │ ├── doc │ │ │ │ │ ├── html.xsl.in │ │ │ │ │ ├── jemalloc.xml.in │ │ │ │ │ ├── manpages.xsl.in │ │ │ │ │ └── stylesheet.xsl │ │ │ │ ├── include │ │ │ │ │ ├── jemalloc │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── arena.h │ │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ │ ├── bitmap.h │ │ │ │ │ │ │ ├── chunk.h │ │ │ │ │ │ │ ├── chunk_dss.h │ │ │ │ │ │ │ ├── chunk_mmap.h │ │ │ │ │ │ │ ├── ckh.h │ │ │ │ │ │ │ ├── ctl.h │ │ │ │ │ │ │ ├── extent.h │ │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ │ ├── huge.h │ │ │ │ │ │ │ ├── jemalloc_internal.h.in │ │ │ │ │ │ │ ├── jemalloc_internal_decls.h │ │ │ │ │ │ │ ├── jemalloc_internal_defs.h.in │ │ │ │ │ │ │ ├── jemalloc_internal_macros.h │ │ │ │ │ │ │ ├── mb.h │ │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ │ ├── pages.h │ │ │ │ │ │ │ ├── private_namespace.sh │ │ │ │ │ │ │ ├── private_symbols.txt │ │ │ │ │ │ │ ├── private_unnamespace.sh │ │ │ │ │ │ │ ├── prng.h │ │ │ │ │ │ │ ├── prof.h │ │ │ │ │ │ │ ├── public_namespace.sh │ │ │ │ │ │ │ ├── public_unnamespace.sh │ │ │ │ │ │ │ ├── ql.h │ │ │ │ │ │ │ ├── qr.h │ │ │ │ │ │ │ ├── quarantine.h │ │ │ │ │ │ │ ├── rb.h │ │ │ │ │ │ │ ├── rtree.h │ │ │ │ │ │ │ ├── size_classes.sh │ │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ │ ├── tcache.h │ │ │ │ │ │ │ ├── tsd.h │ │ │ │ │ │ │ ├── util.h │ │ │ │ │ │ │ └── valgrind.h │ │ │ │ │ │ ├── jemalloc.sh │ │ │ │ │ │ ├── jemalloc_defs.h.in │ │ │ │ │ │ ├── jemalloc_macros.h.in │ │ │ │ │ │ ├── jemalloc_mangle.sh │ │ │ │ │ │ ├── jemalloc_protos.h.in │ │ │ │ │ │ ├── jemalloc_rename.sh │ │ │ │ │ │ └── jemalloc_typedefs.h.in │ │ │ │ │ └── msvc_compat │ │ │ │ │ │ ├── C99 │ │ │ │ │ │ ├── stdbool.h │ │ │ │ │ │ └── stdint.h │ │ │ │ │ │ ├── strings.h │ │ │ │ │ │ └── windows_extra.h │ │ │ │ ├── install-sh │ │ │ │ ├── jemalloc.pc.in │ │ │ │ ├── src │ │ │ │ │ ├── arena.c │ │ │ │ │ ├── atomic.c │ │ │ │ │ ├── base.c │ │ │ │ │ ├── bitmap.c │ │ │ │ │ ├── chunk.c │ │ │ │ │ ├── chunk_dss.c │ │ │ │ │ ├── chunk_mmap.c │ │ │ │ │ ├── ckh.c │ │ │ │ │ ├── ctl.c │ │ │ │ │ ├── extent.c │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── huge.c │ │ │ │ │ ├── jemalloc.c │ │ │ │ │ ├── mb.c │ │ │ │ │ ├── mutex.c │ │ │ │ │ ├── pages.c │ │ │ │ │ ├── prof.c │ │ │ │ │ ├── quarantine.c │ │ │ │ │ ├── rtree.c │ │ │ │ │ ├── stats.c │ │ │ │ │ ├── tcache.c │ │ │ │ │ ├── tsd.c │ │ │ │ │ ├── util.c │ │ │ │ │ ├── valgrind.c │ │ │ │ │ └── zone.c │ │ │ │ └── test │ │ │ │ │ ├── include │ │ │ │ │ └── test │ │ │ │ │ │ ├── SFMT-alti.h │ │ │ │ │ │ ├── SFMT-params.h │ │ │ │ │ │ ├── SFMT-params11213.h │ │ │ │ │ │ ├── SFMT-params1279.h │ │ │ │ │ │ ├── SFMT-params132049.h │ │ │ │ │ │ ├── SFMT-params19937.h │ │ │ │ │ │ ├── SFMT-params216091.h │ │ │ │ │ │ ├── SFMT-params2281.h │ │ │ │ │ │ ├── SFMT-params4253.h │ │ │ │ │ │ ├── SFMT-params44497.h │ │ │ │ │ │ ├── SFMT-params607.h │ │ │ │ │ │ ├── SFMT-params86243.h │ │ │ │ │ │ ├── SFMT-sse2.h │ │ │ │ │ │ ├── SFMT.h │ │ │ │ │ │ ├── btalloc.h │ │ │ │ │ │ ├── jemalloc_test.h.in │ │ │ │ │ │ ├── jemalloc_test_defs.h.in │ │ │ │ │ │ ├── math.h │ │ │ │ │ │ ├── mq.h │ │ │ │ │ │ ├── mtx.h │ │ │ │ │ │ ├── test.h │ │ │ │ │ │ ├── thd.h │ │ │ │ │ │ └── timer.h │ │ │ │ │ ├── integration │ │ │ │ │ ├── MALLOCX_ARENA.c │ │ │ │ │ ├── aligned_alloc.c │ │ │ │ │ ├── allocated.c │ │ │ │ │ ├── chunk.c │ │ │ │ │ ├── mallocx.c │ │ │ │ │ ├── overflow.c │ │ │ │ │ ├── posix_memalign.c │ │ │ │ │ ├── rallocx.c │ │ │ │ │ ├── sdallocx.c │ │ │ │ │ ├── thread_arena.c │ │ │ │ │ ├── thread_tcache_enabled.c │ │ │ │ │ └── xallocx.c │ │ │ │ │ ├── src │ │ │ │ │ ├── SFMT.c │ │ │ │ │ ├── btalloc.c │ │ │ │ │ ├── btalloc_0.c │ │ │ │ │ ├── btalloc_1.c │ │ │ │ │ ├── math.c │ │ │ │ │ ├── mq.c │ │ │ │ │ ├── mtx.c │ │ │ │ │ ├── test.c │ │ │ │ │ ├── thd.c │ │ │ │ │ └── timer.c │ │ │ │ │ ├── stress │ │ │ │ │ └── microbench.c │ │ │ │ │ ├── test.sh.in │ │ │ │ │ └── unit │ │ │ │ │ ├── SFMT.c │ │ │ │ │ ├── atomic.c │ │ │ │ │ ├── bitmap.c │ │ │ │ │ ├── ckh.c │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── junk.c │ │ │ │ │ ├── junk_alloc.c │ │ │ │ │ ├── junk_free.c │ │ │ │ │ ├── lg_chunk.c │ │ │ │ │ ├── mallctl.c │ │ │ │ │ ├── math.c │ │ │ │ │ ├── mq.c │ │ │ │ │ ├── mtx.c │ │ │ │ │ ├── prof_accum.c │ │ │ │ │ ├── prof_active.c │ │ │ │ │ ├── prof_gdump.c │ │ │ │ │ ├── prof_idump.c │ │ │ │ │ ├── prof_reset.c │ │ │ │ │ ├── prof_thread_name.c │ │ │ │ │ ├── ql.c │ │ │ │ │ ├── qr.c │ │ │ │ │ ├── quarantine.c │ │ │ │ │ ├── rb.c │ │ │ │ │ ├── rtree.c │ │ │ │ │ ├── size_classes.c │ │ │ │ │ ├── stats.c │ │ │ │ │ ├── tsd.c │ │ │ │ │ ├── util.c │ │ │ │ │ └── zero.c │ │ │ ├── linenoise │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.markdown │ │ │ │ ├── example.c │ │ │ │ ├── linenoise.c │ │ │ │ └── linenoise.h │ │ │ ├── lua │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── HISTORY │ │ │ │ ├── INSTALL │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── doc │ │ │ │ │ ├── contents.html │ │ │ │ │ ├── cover.png │ │ │ │ │ ├── logo.gif │ │ │ │ │ ├── lua.1 │ │ │ │ │ ├── lua.css │ │ │ │ │ ├── lua.html │ │ │ │ │ ├── luac.1 │ │ │ │ │ ├── luac.html │ │ │ │ │ ├── manual.css │ │ │ │ │ ├── manual.html │ │ │ │ │ └── readme.html │ │ │ │ ├── etc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── all.c │ │ │ │ │ ├── lua.hpp │ │ │ │ │ ├── lua.ico │ │ │ │ │ ├── lua.pc │ │ │ │ │ ├── luavs.bat │ │ │ │ │ ├── min.c │ │ │ │ │ ├── noparser.c │ │ │ │ │ └── strict.lua │ │ │ │ ├── src │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fpconv.c │ │ │ │ │ ├── fpconv.h │ │ │ │ │ ├── lapi.c │ │ │ │ │ ├── lapi.h │ │ │ │ │ ├── lauxlib.c │ │ │ │ │ ├── lauxlib.h │ │ │ │ │ ├── lbaselib.c │ │ │ │ │ ├── lcode.c │ │ │ │ │ ├── lcode.h │ │ │ │ │ ├── ldblib.c │ │ │ │ │ ├── ldebug.c │ │ │ │ │ ├── ldebug.h │ │ │ │ │ ├── ldo.c │ │ │ │ │ ├── ldo.h │ │ │ │ │ ├── ldump.c │ │ │ │ │ ├── lfunc.c │ │ │ │ │ ├── lfunc.h │ │ │ │ │ ├── lgc.c │ │ │ │ │ ├── lgc.h │ │ │ │ │ ├── linit.c │ │ │ │ │ ├── liolib.c │ │ │ │ │ ├── llex.c │ │ │ │ │ ├── llex.h │ │ │ │ │ ├── llimits.h │ │ │ │ │ ├── lmathlib.c │ │ │ │ │ ├── lmem.c │ │ │ │ │ ├── lmem.h │ │ │ │ │ ├── loadlib.c │ │ │ │ │ ├── lobject.c │ │ │ │ │ ├── lobject.h │ │ │ │ │ ├── lopcodes.c │ │ │ │ │ ├── lopcodes.h │ │ │ │ │ ├── loslib.c │ │ │ │ │ ├── lparser.c │ │ │ │ │ ├── lparser.h │ │ │ │ │ ├── lstate.c │ │ │ │ │ ├── lstate.h │ │ │ │ │ ├── lstring.c │ │ │ │ │ ├── lstring.h │ │ │ │ │ ├── lstrlib.c │ │ │ │ │ ├── ltable.c │ │ │ │ │ ├── ltable.h │ │ │ │ │ ├── ltablib.c │ │ │ │ │ ├── ltm.c │ │ │ │ │ ├── ltm.h │ │ │ │ │ ├── lua.c │ │ │ │ │ ├── lua.h │ │ │ │ │ ├── lua_bit.c │ │ │ │ │ ├── lua_cjson.c │ │ │ │ │ ├── lua_cmsgpack.c │ │ │ │ │ ├── lua_struct.c │ │ │ │ │ ├── luac.c │ │ │ │ │ ├── luaconf.h │ │ │ │ │ ├── lualib.h │ │ │ │ │ ├── lundump.c │ │ │ │ │ ├── lundump.h │ │ │ │ │ ├── lvm.c │ │ │ │ │ ├── lvm.h │ │ │ │ │ ├── lzio.c │ │ │ │ │ ├── lzio.h │ │ │ │ │ ├── print.c │ │ │ │ │ ├── strbuf.c │ │ │ │ │ └── strbuf.h │ │ │ │ └── test │ │ │ │ │ ├── README │ │ │ │ │ ├── bisect.lua │ │ │ │ │ ├── cf.lua │ │ │ │ │ ├── echo.lua │ │ │ │ │ ├── env.lua │ │ │ │ │ ├── factorial.lua │ │ │ │ │ ├── fib.lua │ │ │ │ │ ├── fibfor.lua │ │ │ │ │ ├── globals.lua │ │ │ │ │ ├── hello.lua │ │ │ │ │ ├── life.lua │ │ │ │ │ ├── luac.lua │ │ │ │ │ ├── printf.lua │ │ │ │ │ ├── readonly.lua │ │ │ │ │ ├── sieve.lua │ │ │ │ │ ├── sort.lua │ │ │ │ │ ├── table.lua │ │ │ │ │ ├── trace-calls.lua │ │ │ │ │ ├── trace-globals.lua │ │ │ │ │ └── xd.lua │ │ │ └── update-jemalloc.sh │ │ ├── patch │ │ │ ├── Makefile │ │ │ ├── codis │ │ │ │ ├── 0000-redis.patch │ │ │ │ ├── 0001-slotsscan.patch │ │ │ │ ├── 0002-rehash.patch │ │ │ │ ├── 0003-slots_async1.patch │ │ │ │ ├── 0004-slots_async2.patch │ │ │ │ ├── 0005-slots_async3_lazyfree.patch │ │ │ │ ├── 0006-slots_async4_bugfix_1184.patch │ │ │ │ ├── 0007-slots_async5_cleanup.patch │ │ │ │ └── 0008-slots_async6_select.patch │ │ │ ├── redis │ │ │ │ ├── 0001-Don-t-leak-file-descriptor-on-syncWithMaster.patch │ │ │ │ ├── 0002-fix-2883-2857-pipe-fds-leak-when-fork-failed-on-bg-a.patch │ │ │ │ ├── 0003-Implement-getKeys-procedure-for-georadius-and-georad.patch │ │ │ │ ├── 0004-Test-fix-hopefully-false-PSYNC-failure-like-in-issue.patch │ │ │ │ ├── 0005-update-block-free-after-some-diff-data-are-written-t.patch │ │ │ │ ├── 0006-Fix-3848-by-closing-the-descriptor-on-error.patch │ │ │ │ ├── 0007-Set-lua-time-limit-default-value-at-safe-place.patch │ │ │ │ ├── 0008-Fix-zmalloc_get_memory_size-ifdefs-to-actually-use-t.patch │ │ │ │ ├── 0009-Fix-preprocessor-if-else-chain-broken-in-order-to-fi.patch │ │ │ │ ├── 0010-redis-cli-bigkeys-show-error-when-TYPE-fails.patch │ │ │ │ ├── 0011-Redis-3.2.9.patch │ │ │ │ ├── 0012-fix-Update-create-cluster-README.patch │ │ │ │ ├── 0013-cli-Only-print-elapsed-time-on-OUTPUT_STANDARD.patch │ │ │ │ ├── 0014-Fixed-comments-of-slowlog-duration.patch │ │ │ │ ├── 0015-fix-server.stat_net_output_bytes-calc-bug.patch │ │ │ │ ├── 0016-Fix-set-with-ex-px-option-when-propagated-to-aof.patch │ │ │ │ ├── 0017-redis-benchmark-add-t-hset-target.patch │ │ │ │ ├── 0018-Optimize-set-command-with-ex-px-when-updating-aof.patch │ │ │ │ └── 0019-Aesthetic-changes-to-4068-PR-to-conform-to-Redis-cod.patch │ │ │ └── run.sh │ │ ├── redis.conf │ │ ├── runtest │ │ ├── runtest-cluster │ │ ├── runtest-sentinel │ │ ├── sentinel.conf │ │ ├── src │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── Makefile.dep │ │ │ ├── adlist.c │ │ │ ├── adlist.h │ │ │ ├── ae.c │ │ │ ├── ae.h │ │ │ ├── ae_epoll.c │ │ │ ├── ae_evport.c │ │ │ ├── ae_kqueue.c │ │ │ ├── ae_select.c │ │ │ ├── anet.c │ │ │ ├── anet.h │ │ │ ├── aof.c │ │ │ ├── asciilogo.h │ │ │ ├── bio.c │ │ │ ├── bio.h │ │ │ ├── bitops.c │ │ │ ├── blocked.c │ │ │ ├── cluster.c │ │ │ ├── cluster.h │ │ │ ├── config.c │ │ │ ├── config.h │ │ │ ├── crc16.c │ │ │ ├── crc32.c │ │ │ ├── crc64.c │ │ │ ├── crc64.h │ │ │ ├── db.c │ │ │ ├── debug.c │ │ │ ├── debugmacro.h │ │ │ ├── dict.c │ │ │ ├── dict.h │ │ │ ├── endianconv.c │ │ │ ├── endianconv.h │ │ │ ├── fmacros.h │ │ │ ├── geo.c │ │ │ ├── geo.h │ │ │ ├── help.h │ │ │ ├── hyperloglog.c │ │ │ ├── intset.c │ │ │ ├── intset.h │ │ │ ├── latency.c │ │ │ ├── latency.h │ │ │ ├── lzf.h │ │ │ ├── lzfP.h │ │ │ ├── lzf_c.c │ │ │ ├── lzf_d.c │ │ │ ├── memtest.c │ │ │ ├── mkreleasehdr.sh │ │ │ ├── multi.c │ │ │ ├── networking.c │ │ │ ├── notify.c │ │ │ ├── object.c │ │ │ ├── pqsort.c │ │ │ ├── pqsort.h │ │ │ ├── pubsub.c │ │ │ ├── quicklist.c │ │ │ ├── quicklist.h │ │ │ ├── rand.c │ │ │ ├── rand.h │ │ │ ├── rdb.c │ │ │ ├── rdb.h │ │ │ ├── redis-benchmark.c │ │ │ ├── redis-check-aof.c │ │ │ ├── redis-check-rdb.c │ │ │ ├── redis-cli.c │ │ │ ├── redis-trib.rb │ │ │ ├── redisassert.h │ │ │ ├── release.c │ │ │ ├── release.h │ │ │ ├── replication.c │ │ │ ├── rio.c │ │ │ ├── rio.h │ │ │ ├── scripting.c │ │ │ ├── sds.c │ │ │ ├── sds.h │ │ │ ├── sdsalloc.h │ │ │ ├── sentinel.c │ │ │ ├── server.c │ │ │ ├── server.h │ │ │ ├── setproctitle.c │ │ │ ├── sha1.c │ │ │ ├── sha1.h │ │ │ ├── slots.c │ │ │ ├── slots_async.c │ │ │ ├── slowlog.c │ │ │ ├── slowlog.h │ │ │ ├── solarisfixes.h │ │ │ ├── sort.c │ │ │ ├── sparkline.c │ │ │ ├── sparkline.h │ │ │ ├── syncio.c │ │ │ ├── t_hash.c │ │ │ ├── t_list.c │ │ │ ├── t_set.c │ │ │ ├── t_string.c │ │ │ ├── t_zset.c │ │ │ ├── testhelp.h │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── valgrind.sup │ │ │ ├── version.h │ │ │ ├── ziplist.c │ │ │ ├── ziplist.h │ │ │ ├── zipmap.c │ │ │ ├── zipmap.h │ │ │ ├── zmalloc.c │ │ │ └── zmalloc.h │ │ ├── tests │ │ │ ├── assets │ │ │ │ └── default.conf │ │ │ ├── cluster │ │ │ │ ├── cluster.tcl │ │ │ │ ├── run.tcl │ │ │ │ ├── tests │ │ │ │ │ ├── 00-base.tcl │ │ │ │ │ ├── 01-faildet.tcl │ │ │ │ │ ├── 02-failover.tcl │ │ │ │ │ ├── 03-failover-loop.tcl │ │ │ │ │ ├── 04-resharding.tcl │ │ │ │ │ ├── 05-slave-selection.tcl │ │ │ │ │ ├── 06-slave-stop-cond.tcl │ │ │ │ │ ├── 07-replica-migration.tcl │ │ │ │ │ ├── 08-update-msg.tcl │ │ │ │ │ ├── 09-pubsub.tcl │ │ │ │ │ ├── 10-manual-failover.tcl │ │ │ │ │ ├── 11-manual-takeover.tcl │ │ │ │ │ ├── 12-replica-migration-2.tcl │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── onlydots.tcl │ │ │ │ │ └── includes │ │ │ │ │ │ └── init-tests.tcl │ │ │ │ └── tmp │ │ │ │ │ └── .gitignore │ │ │ ├── helpers │ │ │ │ ├── bg_complex_data.tcl │ │ │ │ └── gen_write_load.tcl │ │ │ ├── instances.tcl │ │ │ ├── integration │ │ │ │ ├── aof-race.tcl │ │ │ │ ├── aof.tcl │ │ │ │ ├── convert-zipmap-hash-on-load.tcl │ │ │ │ ├── logging.tcl │ │ │ │ ├── rdb.tcl │ │ │ │ ├── redis-cli.tcl │ │ │ │ ├── replication-2.tcl │ │ │ │ ├── replication-3.tcl │ │ │ │ ├── replication-4.tcl │ │ │ │ ├── replication-psync.tcl │ │ │ │ └── replication.tcl │ │ │ ├── sentinel │ │ │ │ ├── run.tcl │ │ │ │ ├── tests │ │ │ │ │ ├── 00-base.tcl │ │ │ │ │ ├── 01-conf-update.tcl │ │ │ │ │ ├── 02-slaves-reconf.tcl │ │ │ │ │ ├── 03-runtime-reconf.tcl │ │ │ │ │ ├── 04-slave-selection.tcl │ │ │ │ │ ├── 05-manual.tcl │ │ │ │ │ ├── 06-ckquorum.tcl │ │ │ │ │ ├── 07-down-conditions.tcl │ │ │ │ │ └── includes │ │ │ │ │ │ └── init-tests.tcl │ │ │ │ └── tmp │ │ │ │ │ └── .gitignore │ │ │ ├── support │ │ │ │ ├── cluster.tcl │ │ │ │ ├── redis.tcl │ │ │ │ ├── server.tcl │ │ │ │ ├── test.tcl │ │ │ │ ├── tmpfile.tcl │ │ │ │ └── util.tcl │ │ │ ├── test_helper.tcl │ │ │ └── unit │ │ │ │ ├── aofrw.tcl │ │ │ │ ├── auth.tcl │ │ │ │ ├── bitfield.tcl │ │ │ │ ├── bitops.tcl │ │ │ │ ├── dump.tcl │ │ │ │ ├── expire.tcl │ │ │ │ ├── geo.tcl │ │ │ │ ├── hyperloglog.tcl │ │ │ │ ├── introspection-2.tcl │ │ │ │ ├── introspection.tcl │ │ │ │ ├── keyspace.tcl │ │ │ │ ├── latency-monitor.tcl │ │ │ │ ├── limits.tcl │ │ │ │ ├── maxmemory.tcl │ │ │ │ ├── memefficiency.tcl │ │ │ │ ├── multi.tcl │ │ │ │ ├── obuf-limits.tcl │ │ │ │ ├── other.tcl │ │ │ │ ├── printver.tcl │ │ │ │ ├── protocol.tcl │ │ │ │ ├── pubsub.tcl │ │ │ │ ├── quit.tcl │ │ │ │ ├── scan.tcl │ │ │ │ ├── scripting.tcl │ │ │ │ ├── slowlog.tcl │ │ │ │ ├── sort.tcl │ │ │ │ └── type │ │ │ │ ├── hash.tcl │ │ │ │ ├── incr.tcl │ │ │ │ ├── list-2.tcl │ │ │ │ ├── list-3.tcl │ │ │ │ ├── list-common.tcl │ │ │ │ ├── list.tcl │ │ │ │ ├── set.tcl │ │ │ │ ├── string.tcl │ │ │ │ └── zset.tcl │ │ └── utils │ │ │ ├── build-static-symbols.tcl │ │ │ ├── cluster_fail_time.tcl │ │ │ ├── corrupt_rdb.c │ │ │ ├── create-cluster │ │ │ ├── .gitignore │ │ │ ├── README │ │ │ └── create-cluster │ │ │ ├── generate-command-help.rb │ │ │ ├── hashtable │ │ │ ├── README │ │ │ └── rehashing.c │ │ │ ├── hyperloglog │ │ │ ├── .gitignore │ │ │ ├── hll-err.rb │ │ │ └── hll-gnuplot-graph.rb │ │ │ ├── install_server.sh │ │ │ ├── lru │ │ │ ├── README │ │ │ └── test-lru.rb │ │ │ ├── redis-copy.rb │ │ │ ├── redis-sha1.rb │ │ │ ├── redis_init_script │ │ │ ├── redis_init_script.tpl │ │ │ ├── releasetools │ │ │ ├── 01_create_tarball.sh │ │ │ ├── 02_upload_tarball.sh │ │ │ ├── 03_test_release.sh │ │ │ └── 04_release_hash.sh │ │ │ ├── speed-regression.tcl │ │ │ └── whatisdoing.sh │ ├── redis-test │ │ ├── .gitignore │ │ ├── basic_hash.go │ │ ├── basic_incr.go │ │ ├── basic_mgrt.go │ │ ├── bench │ │ │ ├── Makefile │ │ │ └── benchmark.go │ │ ├── conf │ │ │ ├── 6379.conf │ │ │ ├── 6380.conf │ │ │ ├── 6479.conf │ │ │ └── 6480.conf │ │ ├── extra_del.go │ │ ├── extra_incr.go │ │ ├── extra_memleak.go │ │ ├── extra_mget.go │ │ ├── run_test.sh │ │ ├── tcl │ │ │ ├── runtest │ │ │ └── tests │ │ │ │ ├── assets │ │ │ │ └── default.conf │ │ │ │ ├── helpers │ │ │ │ ├── bg_complex_data.tcl │ │ │ │ └── gen_write_load.tcl │ │ │ │ ├── instances.tcl │ │ │ │ ├── support │ │ │ │ ├── redis.tcl │ │ │ │ ├── server.tcl │ │ │ │ ├── test.tcl │ │ │ │ ├── tmpfile.tcl │ │ │ │ └── util.tcl │ │ │ │ ├── test_helper.tcl │ │ │ │ └── unit │ │ │ │ ├── aofrw.tcl │ │ │ │ ├── basic.tcl │ │ │ │ ├── bitops.tcl │ │ │ │ ├── dump.tcl │ │ │ │ ├── expire.tcl │ │ │ │ ├── hyperloglog.tcl │ │ │ │ ├── latency-monitor.tcl │ │ │ │ ├── memefficiency.tcl │ │ │ │ ├── other.tcl │ │ │ │ ├── protocol.tcl │ │ │ │ ├── scripting.tcl │ │ │ │ └── type │ │ │ │ ├── hash.tcl │ │ │ │ ├── list-2.tcl │ │ │ │ ├── list-3.tcl │ │ │ │ ├── list-common.tcl │ │ │ │ ├── list.tcl │ │ │ │ ├── set.tcl │ │ │ │ └── zset.tcl │ │ ├── test_hset.go │ │ ├── test_incr1.go │ │ ├── test_incr2.go │ │ ├── test_list.go │ │ ├── test_mget.go │ │ ├── test_mset.go │ │ ├── test_pttl.go │ │ ├── test_string.go │ │ └── utils.go │ └── scala-client │ │ ├── project │ │ ├── Build.scala │ │ ├── build.properties │ │ └── plugins.sbt │ │ └── src │ │ ├── main │ │ └── scala │ │ │ ├── codis │ │ │ ├── CodisClient.scala │ │ │ └── CodisLogSource.scala │ │ │ └── redis │ │ │ └── DynamicRedisClientPool.scala │ │ └── test │ │ └── scala │ │ ├── codis │ │ └── CodisClientSpec.scala │ │ └── redis │ │ └── DynamicRedisClientPoolSpec.scala └── redis-3.2.11 │ ├── .gitignore │ ├── 00-RELEASENOTES │ ├── BUGS │ ├── CONTRIBUTING │ ├── COPYING │ ├── INSTALL │ ├── MANIFESTO │ ├── Makefile │ ├── README.md │ ├── deps │ ├── Makefile │ ├── README.md │ ├── geohash-int │ │ ├── Makefile │ │ ├── geohash.c │ │ ├── geohash.h │ │ ├── geohash_helper.c │ │ └── geohash_helper.h │ ├── hiredis │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README.md │ │ ├── adapters │ │ │ ├── ae.h │ │ │ ├── libev.h │ │ │ ├── libevent.h │ │ │ └── libuv.h │ │ ├── async.c │ │ ├── async.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── examples │ │ │ ├── example-ae.c │ │ │ ├── example-libev.c │ │ │ ├── example-libevent.c │ │ │ ├── example-libuv.c │ │ │ └── example.c │ │ ├── fmacros.h │ │ ├── hiredis.c │ │ ├── hiredis.h │ │ ├── net.c │ │ ├── net.h │ │ ├── sds.c │ │ ├── sds.h │ │ ├── sdsalloc.h │ │ ├── test.c │ │ └── zmalloc.h │ ├── jemalloc │ │ ├── .autom4te.cfg │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.in │ │ ├── README │ │ ├── VERSION │ │ ├── autogen.sh │ │ ├── bin │ │ │ ├── jemalloc-config.in │ │ │ ├── jemalloc.sh.in │ │ │ └── jeprof.in │ │ ├── config.guess │ │ ├── config.stamp.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── coverage.sh │ │ ├── doc │ │ │ ├── html.xsl.in │ │ │ ├── jemalloc.xml.in │ │ │ ├── manpages.xsl.in │ │ │ └── stylesheet.xsl │ │ ├── include │ │ │ ├── jemalloc │ │ │ │ ├── internal │ │ │ │ │ ├── arena.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── base.h │ │ │ │ │ ├── bitmap.h │ │ │ │ │ ├── chunk.h │ │ │ │ │ ├── chunk_dss.h │ │ │ │ │ ├── chunk_mmap.h │ │ │ │ │ ├── ckh.h │ │ │ │ │ ├── ctl.h │ │ │ │ │ ├── extent.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── huge.h │ │ │ │ │ ├── jemalloc_internal.h.in │ │ │ │ │ ├── jemalloc_internal_decls.h │ │ │ │ │ ├── jemalloc_internal_defs.h.in │ │ │ │ │ ├── jemalloc_internal_macros.h │ │ │ │ │ ├── mb.h │ │ │ │ │ ├── mutex.h │ │ │ │ │ ├── pages.h │ │ │ │ │ ├── private_namespace.sh │ │ │ │ │ ├── private_symbols.txt │ │ │ │ │ ├── private_unnamespace.sh │ │ │ │ │ ├── prng.h │ │ │ │ │ ├── prof.h │ │ │ │ │ ├── public_namespace.sh │ │ │ │ │ ├── public_unnamespace.sh │ │ │ │ │ ├── ql.h │ │ │ │ │ ├── qr.h │ │ │ │ │ ├── quarantine.h │ │ │ │ │ ├── rb.h │ │ │ │ │ ├── rtree.h │ │ │ │ │ ├── size_classes.sh │ │ │ │ │ ├── stats.h │ │ │ │ │ ├── tcache.h │ │ │ │ │ ├── tsd.h │ │ │ │ │ ├── util.h │ │ │ │ │ └── valgrind.h │ │ │ │ ├── jemalloc.sh │ │ │ │ ├── jemalloc_defs.h.in │ │ │ │ ├── jemalloc_macros.h.in │ │ │ │ ├── jemalloc_mangle.sh │ │ │ │ ├── jemalloc_protos.h.in │ │ │ │ ├── jemalloc_rename.sh │ │ │ │ └── jemalloc_typedefs.h.in │ │ │ └── msvc_compat │ │ │ │ ├── C99 │ │ │ │ ├── stdbool.h │ │ │ │ └── stdint.h │ │ │ │ ├── strings.h │ │ │ │ └── windows_extra.h │ │ ├── install-sh │ │ ├── jemalloc.pc.in │ │ ├── src │ │ │ ├── arena.c │ │ │ ├── atomic.c │ │ │ ├── base.c │ │ │ ├── bitmap.c │ │ │ ├── chunk.c │ │ │ ├── chunk_dss.c │ │ │ ├── chunk_mmap.c │ │ │ ├── ckh.c │ │ │ ├── ctl.c │ │ │ ├── extent.c │ │ │ ├── hash.c │ │ │ ├── huge.c │ │ │ ├── jemalloc.c │ │ │ ├── mb.c │ │ │ ├── mutex.c │ │ │ ├── pages.c │ │ │ ├── prof.c │ │ │ ├── quarantine.c │ │ │ ├── rtree.c │ │ │ ├── stats.c │ │ │ ├── tcache.c │ │ │ ├── tsd.c │ │ │ ├── util.c │ │ │ ├── valgrind.c │ │ │ └── zone.c │ │ └── test │ │ │ ├── include │ │ │ └── test │ │ │ │ ├── SFMT-alti.h │ │ │ │ ├── SFMT-params.h │ │ │ │ ├── SFMT-params11213.h │ │ │ │ ├── SFMT-params1279.h │ │ │ │ ├── SFMT-params132049.h │ │ │ │ ├── SFMT-params19937.h │ │ │ │ ├── SFMT-params216091.h │ │ │ │ ├── SFMT-params2281.h │ │ │ │ ├── SFMT-params4253.h │ │ │ │ ├── SFMT-params44497.h │ │ │ │ ├── SFMT-params607.h │ │ │ │ ├── SFMT-params86243.h │ │ │ │ ├── SFMT-sse2.h │ │ │ │ ├── SFMT.h │ │ │ │ ├── btalloc.h │ │ │ │ ├── jemalloc_test.h.in │ │ │ │ ├── jemalloc_test_defs.h.in │ │ │ │ ├── math.h │ │ │ │ ├── mq.h │ │ │ │ ├── mtx.h │ │ │ │ ├── test.h │ │ │ │ ├── thd.h │ │ │ │ └── timer.h │ │ │ ├── integration │ │ │ ├── MALLOCX_ARENA.c │ │ │ ├── aligned_alloc.c │ │ │ ├── allocated.c │ │ │ ├── chunk.c │ │ │ ├── mallocx.c │ │ │ ├── overflow.c │ │ │ ├── posix_memalign.c │ │ │ ├── rallocx.c │ │ │ ├── sdallocx.c │ │ │ ├── thread_arena.c │ │ │ ├── thread_tcache_enabled.c │ │ │ └── xallocx.c │ │ │ ├── src │ │ │ ├── SFMT.c │ │ │ ├── btalloc.c │ │ │ ├── btalloc_0.c │ │ │ ├── btalloc_1.c │ │ │ ├── math.c │ │ │ ├── mq.c │ │ │ ├── mtx.c │ │ │ ├── test.c │ │ │ ├── thd.c │ │ │ └── timer.c │ │ │ ├── stress │ │ │ └── microbench.c │ │ │ ├── test.sh.in │ │ │ └── unit │ │ │ ├── SFMT.c │ │ │ ├── atomic.c │ │ │ ├── bitmap.c │ │ │ ├── ckh.c │ │ │ ├── hash.c │ │ │ ├── junk.c │ │ │ ├── junk_alloc.c │ │ │ ├── junk_free.c │ │ │ ├── lg_chunk.c │ │ │ ├── mallctl.c │ │ │ ├── math.c │ │ │ ├── mq.c │ │ │ ├── mtx.c │ │ │ ├── prof_accum.c │ │ │ ├── prof_active.c │ │ │ ├── prof_gdump.c │ │ │ ├── prof_idump.c │ │ │ ├── prof_reset.c │ │ │ ├── prof_thread_name.c │ │ │ ├── ql.c │ │ │ ├── qr.c │ │ │ ├── quarantine.c │ │ │ ├── rb.c │ │ │ ├── rtree.c │ │ │ ├── size_classes.c │ │ │ ├── stats.c │ │ │ ├── tsd.c │ │ │ ├── util.c │ │ │ └── zero.c │ ├── linenoise │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.markdown │ │ ├── example.c │ │ ├── linenoise.c │ │ └── linenoise.h │ ├── lua │ │ ├── COPYRIGHT │ │ ├── HISTORY │ │ ├── INSTALL │ │ ├── Makefile │ │ ├── README │ │ ├── doc │ │ │ ├── contents.html │ │ │ ├── cover.png │ │ │ ├── logo.gif │ │ │ ├── lua.1 │ │ │ ├── lua.css │ │ │ ├── lua.html │ │ │ ├── luac.1 │ │ │ ├── luac.html │ │ │ ├── manual.css │ │ │ ├── manual.html │ │ │ └── readme.html │ │ ├── etc │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── all.c │ │ │ ├── lua.hpp │ │ │ ├── lua.ico │ │ │ ├── lua.pc │ │ │ ├── luavs.bat │ │ │ ├── min.c │ │ │ ├── noparser.c │ │ │ └── strict.lua │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── fpconv.c │ │ │ ├── fpconv.h │ │ │ ├── lapi.c │ │ │ ├── lapi.h │ │ │ ├── lauxlib.c │ │ │ ├── lauxlib.h │ │ │ ├── lbaselib.c │ │ │ ├── lcode.c │ │ │ ├── lcode.h │ │ │ ├── ldblib.c │ │ │ ├── ldebug.c │ │ │ ├── ldebug.h │ │ │ ├── ldo.c │ │ │ ├── ldo.h │ │ │ ├── ldump.c │ │ │ ├── lfunc.c │ │ │ ├── lfunc.h │ │ │ ├── lgc.c │ │ │ ├── lgc.h │ │ │ ├── linit.c │ │ │ ├── liolib.c │ │ │ ├── llex.c │ │ │ ├── llex.h │ │ │ ├── llimits.h │ │ │ ├── lmathlib.c │ │ │ ├── lmem.c │ │ │ ├── lmem.h │ │ │ ├── loadlib.c │ │ │ ├── lobject.c │ │ │ ├── lobject.h │ │ │ ├── lopcodes.c │ │ │ ├── lopcodes.h │ │ │ ├── loslib.c │ │ │ ├── lparser.c │ │ │ ├── lparser.h │ │ │ ├── lstate.c │ │ │ ├── lstate.h │ │ │ ├── lstring.c │ │ │ ├── lstring.h │ │ │ ├── lstrlib.c │ │ │ ├── ltable.c │ │ │ ├── ltable.h │ │ │ ├── ltablib.c │ │ │ ├── ltm.c │ │ │ ├── ltm.h │ │ │ ├── lua.c │ │ │ ├── lua.h │ │ │ ├── lua_bit.c │ │ │ ├── lua_cjson.c │ │ │ ├── lua_cmsgpack.c │ │ │ ├── lua_struct.c │ │ │ ├── luac.c │ │ │ ├── luaconf.h │ │ │ ├── lualib.h │ │ │ ├── lundump.c │ │ │ ├── lundump.h │ │ │ ├── lvm.c │ │ │ ├── lvm.h │ │ │ ├── lzio.c │ │ │ ├── lzio.h │ │ │ ├── print.c │ │ │ ├── strbuf.c │ │ │ └── strbuf.h │ │ └── test │ │ │ ├── README │ │ │ ├── bisect.lua │ │ │ ├── cf.lua │ │ │ ├── echo.lua │ │ │ ├── env.lua │ │ │ ├── factorial.lua │ │ │ ├── fib.lua │ │ │ ├── fibfor.lua │ │ │ ├── globals.lua │ │ │ ├── hello.lua │ │ │ ├── life.lua │ │ │ ├── luac.lua │ │ │ ├── printf.lua │ │ │ ├── readonly.lua │ │ │ ├── sieve.lua │ │ │ ├── sort.lua │ │ │ ├── table.lua │ │ │ ├── trace-calls.lua │ │ │ ├── trace-globals.lua │ │ │ └── xd.lua │ └── update-jemalloc.sh │ ├── patch │ ├── Makefile │ ├── codis │ │ ├── 0000-redis.patch │ │ ├── 0001-slotsscan.patch │ │ ├── 0002-rehash.patch │ │ ├── 0003-slots_async1.patch │ │ ├── 0004-slots_async2.patch │ │ ├── 0005-slots_async3_lazyfree.patch │ │ ├── 0006-slots_async4_bugfix_1184.patch │ │ ├── 0007-slots_async5_cleanup.patch │ │ └── 0008-slots_async6_select.patch │ ├── redis │ │ ├── 0001-Don-t-leak-file-descriptor-on-syncWithMaster.patch │ │ ├── 0002-fix-2883-2857-pipe-fds-leak-when-fork-failed-on-bg-a.patch │ │ ├── 0003-Implement-getKeys-procedure-for-georadius-and-georad.patch │ │ ├── 0004-Test-fix-hopefully-false-PSYNC-failure-like-in-issue.patch │ │ ├── 0005-update-block-free-after-some-diff-data-are-written-t.patch │ │ ├── 0006-Fix-3848-by-closing-the-descriptor-on-error.patch │ │ ├── 0007-Set-lua-time-limit-default-value-at-safe-place.patch │ │ ├── 0008-Fix-zmalloc_get_memory_size-ifdefs-to-actually-use-t.patch │ │ ├── 0009-Fix-preprocessor-if-else-chain-broken-in-order-to-fi.patch │ │ ├── 0010-redis-cli-bigkeys-show-error-when-TYPE-fails.patch │ │ ├── 0011-Redis-3.2.9.patch │ │ ├── 0012-fix-Update-create-cluster-README.patch │ │ ├── 0013-cli-Only-print-elapsed-time-on-OUTPUT_STANDARD.patch │ │ ├── 0014-Fixed-comments-of-slowlog-duration.patch │ │ ├── 0015-fix-server.stat_net_output_bytes-calc-bug.patch │ │ ├── 0016-Fix-set-with-ex-px-option-when-propagated-to-aof.patch │ │ ├── 0017-redis-benchmark-add-t-hset-target.patch │ │ ├── 0018-Optimize-set-command-with-ex-px-when-updating-aof.patch │ │ ├── 0019-Aesthetic-changes-to-4068-PR-to-conform-to-Redis-cod.patch │ │ ├── 0020-Collect-fork-timing-info-only-if-fork-succeeded.patch │ │ ├── 0021-Prevent-expirations-and-evictions-while-paused.patch │ │ ├── 0022-Removed-duplicate-sys-socket.h-include.patch │ │ ├── 0023-Fix-PERSIST-expired-key-resuscitation-issue-4048.patch │ │ ├── 0024-Fix-brpop-command-table-entry-and-redirect-blocked-c.patch │ │ ├── 0025-Fix-following-issues-in-blocking-commands.patch │ │ ├── 0026-Added-GEORADIUS-BYMEMBER-_RO-variants-for-read-only-.patch │ │ ├── 0027-Fix-abort-typo-in-Lua-debugger-help-screen.patch │ │ ├── 0028-Fix-isHLLObjectOrReply-to-handle-integer-encoded-str.patch │ │ ├── 0029-Make-representClusterNodeFlags-more-robust.patch │ │ ├── 0030-Fix-lua-ldb-command-log.patch │ │ ├── 0031-fix-mismatch-argument.patch │ │ ├── 0032-fix-return-wrong-value-of-clusterDelNodeSlots.patch │ │ ├── 0033-Don-t-use-extended-Regexp-Syntax.patch │ │ ├── 0034-Fixed-issue-1996-Missing-in-help-message-for-redis-b.patch │ │ ├── 0035-fix-rewrite-config-auto-aof-rewrite-min-size.patch │ │ ├── 0036-Check-that-the-whole-first-argument-is-a-number.patch │ │ ├── 0037-Redis-3.2.10.patch │ │ ├── 0038-Flush-append-only-buffers-before-existing.patch │ │ └── 0039-Redis-3.2.11.patch │ └── run.sh │ ├── redis.conf │ ├── runtest │ ├── runtest-cluster │ ├── runtest-sentinel │ ├── sentinel.conf │ ├── src │ ├── .gitignore │ ├── Makefile │ ├── Makefile.dep │ ├── adlist.c │ ├── adlist.h │ ├── ae.c │ ├── ae.h │ ├── ae_epoll.c │ ├── ae_evport.c │ ├── ae_kqueue.c │ ├── ae_select.c │ ├── anet.c │ ├── anet.h │ ├── aof.c │ ├── asciilogo.h │ ├── bio.c │ ├── bio.h │ ├── bitops.c │ ├── blocked.c │ ├── cluster.c │ ├── cluster.h │ ├── config.c │ ├── config.h │ ├── crc16.c │ ├── crc32.c │ ├── crc64.c │ ├── crc64.h │ ├── db.c │ ├── debug.c │ ├── debugmacro.h │ ├── dict.c │ ├── dict.h │ ├── endianconv.c │ ├── endianconv.h │ ├── fmacros.h │ ├── geo.c │ ├── geo.h │ ├── help.h │ ├── hyperloglog.c │ ├── intset.c │ ├── intset.h │ ├── latency.c │ ├── latency.h │ ├── lzf.h │ ├── lzfP.h │ ├── lzf_c.c │ ├── lzf_d.c │ ├── memtest.c │ ├── mkreleasehdr.sh │ ├── multi.c │ ├── networking.c │ ├── notify.c │ ├── object.c │ ├── pqsort.c │ ├── pqsort.h │ ├── pubsub.c │ ├── quicklist.c │ ├── quicklist.h │ ├── rand.c │ ├── rand.h │ ├── rdb.c │ ├── rdb.h │ ├── redis-benchmark.c │ ├── redis-check-aof.c │ ├── redis-check-rdb.c │ ├── redis-cli.c │ ├── redis-trib.rb │ ├── redisassert.h │ ├── release.c │ ├── replication.c │ ├── rio.c │ ├── rio.h │ ├── scripting.c │ ├── sds.c │ ├── sds.h │ ├── sdsalloc.h │ ├── sentinel.c │ ├── server.c │ ├── server.h │ ├── setproctitle.c │ ├── sha1.c │ ├── sha1.h │ ├── slots.c │ ├── slots_async.c │ ├── slowlog.c │ ├── slowlog.h │ ├── solarisfixes.h │ ├── sort.c │ ├── sparkline.c │ ├── sparkline.h │ ├── syncio.c │ ├── t_hash.c │ ├── t_list.c │ ├── t_set.c │ ├── t_string.c │ ├── t_zset.c │ ├── testhelp.h │ ├── util.c │ ├── util.h │ ├── valgrind.sup │ ├── version.h │ ├── ziplist.c │ ├── ziplist.h │ ├── zipmap.c │ ├── zipmap.h │ ├── zmalloc.c │ └── zmalloc.h │ ├── tests │ ├── assets │ │ └── default.conf │ ├── cluster │ │ ├── cluster.tcl │ │ ├── run.tcl │ │ ├── tests │ │ │ ├── 00-base.tcl │ │ │ ├── 01-faildet.tcl │ │ │ ├── 02-failover.tcl │ │ │ ├── 03-failover-loop.tcl │ │ │ ├── 04-resharding.tcl │ │ │ ├── 05-slave-selection.tcl │ │ │ ├── 06-slave-stop-cond.tcl │ │ │ ├── 07-replica-migration.tcl │ │ │ ├── 08-update-msg.tcl │ │ │ ├── 09-pubsub.tcl │ │ │ ├── 10-manual-failover.tcl │ │ │ ├── 11-manual-takeover.tcl │ │ │ ├── 12-replica-migration-2.tcl │ │ │ ├── helpers │ │ │ │ └── onlydots.tcl │ │ │ └── includes │ │ │ │ └── init-tests.tcl │ │ └── tmp │ │ │ └── .gitignore │ ├── helpers │ │ ├── bg_complex_data.tcl │ │ └── gen_write_load.tcl │ ├── instances.tcl │ ├── integration │ │ ├── aof-race.tcl │ │ ├── aof.tcl │ │ ├── convert-zipmap-hash-on-load.tcl │ │ ├── logging.tcl │ │ ├── rdb.tcl │ │ ├── redis-cli.tcl │ │ ├── replication-2.tcl │ │ ├── replication-3.tcl │ │ ├── replication-4.tcl │ │ ├── replication-psync.tcl │ │ └── replication.tcl │ ├── sentinel │ │ ├── run.tcl │ │ ├── tests │ │ │ ├── 00-base.tcl │ │ │ ├── 01-conf-update.tcl │ │ │ ├── 02-slaves-reconf.tcl │ │ │ ├── 03-runtime-reconf.tcl │ │ │ ├── 04-slave-selection.tcl │ │ │ ├── 05-manual.tcl │ │ │ ├── 06-ckquorum.tcl │ │ │ ├── 07-down-conditions.tcl │ │ │ └── includes │ │ │ │ └── init-tests.tcl │ │ └── tmp │ │ │ └── .gitignore │ ├── support │ │ ├── cluster.tcl │ │ ├── redis.tcl │ │ ├── server.tcl │ │ ├── test.tcl │ │ ├── tmpfile.tcl │ │ └── util.tcl │ ├── test_helper.tcl │ └── unit │ │ ├── aofrw.tcl │ │ ├── auth.tcl │ │ ├── bitfield.tcl │ │ ├── bitops.tcl │ │ ├── dump.tcl │ │ ├── expire.tcl │ │ ├── geo.tcl │ │ ├── hyperloglog.tcl │ │ ├── introspection-2.tcl │ │ ├── introspection.tcl │ │ ├── keyspace.tcl │ │ ├── latency-monitor.tcl │ │ ├── limits.tcl │ │ ├── maxmemory.tcl │ │ ├── memefficiency.tcl │ │ ├── multi.tcl │ │ ├── obuf-limits.tcl │ │ ├── other.tcl │ │ ├── printver.tcl │ │ ├── protocol.tcl │ │ ├── pubsub.tcl │ │ ├── quit.tcl │ │ ├── scan.tcl │ │ ├── scripting.tcl │ │ ├── slowlog.tcl │ │ ├── sort.tcl │ │ └── type │ │ ├── hash.tcl │ │ ├── incr.tcl │ │ ├── list-2.tcl │ │ ├── list-3.tcl │ │ ├── list-common.tcl │ │ ├── list.tcl │ │ ├── set.tcl │ │ ├── string.tcl │ │ └── zset.tcl │ └── utils │ ├── build-static-symbols.tcl │ ├── cluster_fail_time.tcl │ ├── corrupt_rdb.c │ ├── create-cluster │ ├── .gitignore │ ├── README │ └── create-cluster │ ├── generate-command-help.rb │ ├── hashtable │ ├── README │ └── rehashing.c │ ├── hyperloglog │ ├── .gitignore │ ├── hll-err.rb │ └── hll-gnuplot-graph.rb │ ├── install_server.sh │ ├── lru │ ├── README │ └── test-lru.rb │ ├── redis-copy.rb │ ├── redis-sha1.rb │ ├── redis_init_script │ ├── redis_init_script.tpl │ ├── releasetools │ ├── 01_create_tarball.sh │ ├── 02_upload_tarball.sh │ ├── 03_test_release.sh │ └── 04_release_hash.sh │ ├── speed-regression.tcl │ └── whatisdoing.sh ├── fe-Dockerfile ├── kubernetes ├── README.md ├── codis-dashboard.yaml ├── codis-fe.yaml ├── codis-ha.yaml ├── codis-proxy.yaml ├── codis-server.yaml ├── codis-service.yaml ├── start.sh └── zookeeper │ ├── zookeeper-service.yaml │ └── zookeeper.yaml ├── pkg ├── models │ ├── action.go │ ├── client.go │ ├── encode.go │ ├── etcd │ │ └── etcdclient.go │ ├── fs │ │ └── fsclient.go │ ├── group.go │ ├── proxy.go │ ├── sentinel.go │ ├── slots.go │ ├── sorter.go │ ├── store.go │ ├── table.go │ ├── topom.go │ └── zk │ │ └── zkclient.go ├── proxy │ ├── backend.go │ ├── backend_test.go │ ├── config.go │ ├── delay.go │ ├── forward.go │ ├── jodis.go │ ├── mapper.go │ ├── mapper_test.go │ ├── metrics.go │ ├── proxy.go │ ├── proxy_api.go │ ├── proxy_test.go │ ├── redis │ │ ├── conn.go │ │ ├── conn_test.go │ │ ├── decoder.go │ │ ├── decoder_test.go │ │ ├── encoder.go │ │ ├── encoder_test.go │ │ └── resp.go │ ├── request.go │ ├── request_test.go │ ├── router.go │ ├── session.go │ ├── slots.go │ └── stats.go ├── topom │ ├── .gitignore │ ├── config.go │ ├── context.go │ ├── context_test.go │ ├── manager.go │ ├── topom.go │ ├── topom_action.go │ ├── topom_action_test.go │ ├── topom_api.go │ ├── topom_api_test.go │ ├── topom_cache.go │ ├── topom_cache_test.go │ ├── topom_group.go │ ├── topom_group_test.go │ ├── topom_proxy.go │ ├── topom_proxy_test.go │ ├── topom_sentinel.go │ ├── topom_slots.go │ ├── topom_slots_test.go │ ├── topom_stats.go │ ├── topom_stats_test.go │ ├── topom_table.go │ ├── topom_table_test.go │ └── topom_test.go └── utils │ ├── args.go │ ├── assert │ └── assert.go │ ├── bufio2 │ ├── bufio.go │ ├── bufio_test.go │ └── slice.go │ ├── bytesize │ ├── bytesize.go │ └── bytesize_test.go │ ├── errors │ └── errors.go │ ├── log │ ├── log.go │ └── rolling.go │ ├── math2 │ ├── math.go │ └── math_test.go │ ├── redis │ ├── client.go │ └── sentinel.go │ ├── resolver.go │ ├── resolver_test.go │ ├── rpc │ ├── api.go │ └── crypto.go │ ├── sync2 │ ├── atomic2 │ │ ├── atomic64.go │ │ └── bool.go │ └── future.go │ ├── timesize │ ├── timesize.go │ └── timesize_test.go │ ├── trace │ └── trace.go │ ├── unsafe2 │ ├── cgo_malloc.go │ ├── cgo_slice.go │ ├── go_slice.go │ ├── je_malloc.go │ ├── slice.go │ ├── slice_test.go │ ├── string.go │ └── string_test.go │ ├── usage.go │ ├── usage_linux.go │ └── usage_rusage.go ├── proxy-Dockerfile ├── scripts ├── .gitignore ├── docker.sh ├── sentinel-entrypoint.sh └── static_slots.py ├── sentinel-Dockerfile ├── vendor ├── github.com │ ├── BurntSushi │ │ └── toml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── COMPATIBLE │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── decode_meta.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encoding_types.go │ │ │ ├── encoding_types_1.1.go │ │ │ ├── lex.go │ │ │ ├── parse.go │ │ │ ├── session.vim │ │ │ ├── type_check.go │ │ │ └── type_fields.go │ ├── codegangsta │ │ └── inject │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inject.go │ │ │ └── update_readme.sh │ ├── coreos │ │ └── etcd │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── client │ │ │ ├── README.md │ │ │ ├── auth_role.go │ │ │ ├── auth_user.go │ │ │ ├── cancelreq.go │ │ │ ├── client.go │ │ │ ├── cluster_error.go │ │ │ ├── curl.go │ │ │ ├── discover.go │ │ │ ├── doc.go │ │ │ ├── keys.generated.go │ │ │ ├── keys.go │ │ │ ├── members.go │ │ │ ├── srv.go │ │ │ └── util.go │ │ │ └── pkg │ │ │ ├── pathutil │ │ │ └── path.go │ │ │ └── types │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── set.go │ │ │ ├── slice.go │ │ │ ├── urls.go │ │ │ └── urlsmap.go │ ├── docopt │ │ └── docopt-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── docopt.go │ │ │ ├── test_golang.docopt │ │ │ └── testcases.docopt │ ├── emirpasic │ │ └── gods │ │ │ ├── LICENSE │ │ │ ├── containers │ │ │ ├── containers.go │ │ │ ├── enumerable.go │ │ │ ├── iterator.go │ │ │ └── serialization.go │ │ │ ├── trees │ │ │ ├── redblacktree │ │ │ │ ├── iterator.go │ │ │ │ ├── redblacktree.go │ │ │ │ └── serialization.go │ │ │ └── trees.go │ │ │ └── utils │ │ │ ├── comparator.go │ │ │ ├── sort.go │ │ │ └── utils.go │ ├── garyburd │ │ └── redigo │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ └── commandinfo.go │ │ │ └── redis │ │ │ ├── conn.go │ │ │ ├── doc.go │ │ │ ├── go17.go │ │ │ ├── log.go │ │ │ ├── pool.go │ │ │ ├── pre_go17.go │ │ │ ├── pubsub.go │ │ │ ├── redis.go │ │ │ ├── reply.go │ │ │ ├── scan.go │ │ │ └── script.go │ ├── go-martini │ │ └── martini │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── env.go │ │ │ ├── go_version.go │ │ │ ├── logger.go │ │ │ ├── martini.go │ │ │ ├── recovery.go │ │ │ ├── response_writer.go │ │ │ ├── return_handler.go │ │ │ ├── router.go │ │ │ ├── static.go │ │ │ └── wercker.yml │ ├── influxdata │ │ └── influxdb │ │ │ ├── LICENSE │ │ │ ├── LICENSE_OF_DEPENDENCIES.md │ │ │ ├── client │ │ │ └── v2 │ │ │ │ ├── client.go │ │ │ │ └── udp.go │ │ │ ├── models │ │ │ ├── consistency.go │ │ │ ├── inline_fnv.go │ │ │ ├── inline_strconv_parse.go │ │ │ ├── points.go │ │ │ ├── rows.go │ │ │ ├── statistic.go │ │ │ └── time.go │ │ │ └── pkg │ │ │ └── escape │ │ │ ├── bytes.go │ │ │ └── strings.go │ ├── martini-contrib │ │ ├── binding │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── binding.go │ │ │ ├── errors.go │ │ │ └── wercker.yml │ │ ├── gzip │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── gzip.go │ │ │ └── wercker.yml │ │ └── render │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── render.go │ │ │ └── wercker.yml │ ├── oxtoacart │ │ └── bpool │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bpool.go │ │ │ ├── bufferpool.go │ │ │ ├── bytepool.go │ │ │ └── sizedbufferpool.go │ ├── samuel │ │ └── go-zookeeper │ │ │ ├── LICENSE │ │ │ └── zk │ │ │ ├── conn.go │ │ │ ├── constants.go │ │ │ ├── dnshostprovider.go │ │ │ ├── flw.go │ │ │ ├── lock.go │ │ │ ├── server_help.go │ │ │ ├── server_java.go │ │ │ ├── structs.go │ │ │ └── util.go │ ├── spinlock │ │ └── jemalloc-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── help.mk │ │ │ ├── jemalloc-4.4.0 │ │ │ ├── .appveyor.yml │ │ │ ├── .autom4te.cfg │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── autogen.sh │ │ │ ├── bin │ │ │ │ ├── jemalloc-config.in │ │ │ │ ├── jemalloc.sh.in │ │ │ │ └── jeprof.in │ │ │ ├── build-aux │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ └── install-sh │ │ │ ├── config.stamp.in │ │ │ ├── configure.ac │ │ │ ├── coverage.sh │ │ │ ├── doc │ │ │ │ ├── html.xsl.in │ │ │ │ ├── jemalloc.xml.in │ │ │ │ ├── manpages.xsl.in │ │ │ │ └── stylesheet.xsl │ │ │ ├── include │ │ │ │ ├── jemalloc │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── arena.h │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ ├── atomic.h │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ ├── bitmap.h │ │ │ │ │ │ ├── chunk.h │ │ │ │ │ │ ├── chunk_dss.h │ │ │ │ │ │ ├── chunk_mmap.h │ │ │ │ │ │ ├── ckh.h │ │ │ │ │ │ ├── ctl.h │ │ │ │ │ │ ├── extent.h │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── huge.h │ │ │ │ │ │ ├── jemalloc_internal.h.in │ │ │ │ │ │ ├── jemalloc_internal_decls.h │ │ │ │ │ │ ├── jemalloc_internal_defs.h.in │ │ │ │ │ │ ├── jemalloc_internal_macros.h │ │ │ │ │ │ ├── mb.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ ├── nstime.h │ │ │ │ │ │ ├── pages.h │ │ │ │ │ │ ├── ph.h │ │ │ │ │ │ ├── private_namespace.sh │ │ │ │ │ │ ├── private_symbols.txt │ │ │ │ │ │ ├── private_unnamespace.sh │ │ │ │ │ │ ├── prng.h │ │ │ │ │ │ ├── prof.h │ │ │ │ │ │ ├── public_namespace.sh │ │ │ │ │ │ ├── public_unnamespace.sh │ │ │ │ │ │ ├── ql.h │ │ │ │ │ │ ├── qr.h │ │ │ │ │ │ ├── quarantine.h │ │ │ │ │ │ ├── rb.h │ │ │ │ │ │ ├── rtree.h │ │ │ │ │ │ ├── size_classes.sh │ │ │ │ │ │ ├── smoothstep.h │ │ │ │ │ │ ├── smoothstep.sh │ │ │ │ │ │ ├── spin.h │ │ │ │ │ │ ├── stats.h │ │ │ │ │ │ ├── tcache.h │ │ │ │ │ │ ├── ticker.h │ │ │ │ │ │ ├── tsd.h │ │ │ │ │ │ ├── util.h │ │ │ │ │ │ ├── valgrind.h │ │ │ │ │ │ └── witness.h │ │ │ │ │ ├── jemalloc.sh │ │ │ │ │ ├── jemalloc_defs.h.in │ │ │ │ │ ├── jemalloc_macros.h.in │ │ │ │ │ ├── jemalloc_mangle.sh │ │ │ │ │ ├── jemalloc_protos.h.in │ │ │ │ │ ├── jemalloc_rename.sh │ │ │ │ │ └── jemalloc_typedefs.h.in │ │ │ │ └── msvc_compat │ │ │ │ │ ├── C99 │ │ │ │ │ ├── stdbool.h │ │ │ │ │ └── stdint.h │ │ │ │ │ ├── strings.h │ │ │ │ │ └── windows_extra.h │ │ │ ├── jemalloc.pc.in │ │ │ ├── msvc │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── jemalloc_vc2015.sln │ │ │ │ └── projects │ │ │ │ │ └── vc2015 │ │ │ │ │ ├── jemalloc │ │ │ │ │ ├── jemalloc.vcxproj │ │ │ │ │ └── jemalloc.vcxproj.filters │ │ │ │ │ └── test_threads │ │ │ │ │ ├── test_threads.cpp │ │ │ │ │ ├── test_threads.h │ │ │ │ │ ├── test_threads.vcxproj │ │ │ │ │ ├── test_threads.vcxproj.filters │ │ │ │ │ └── test_threads_main.cpp │ │ │ ├── src │ │ │ │ ├── arena.c │ │ │ │ ├── atomic.c │ │ │ │ ├── base.c │ │ │ │ ├── bitmap.c │ │ │ │ ├── chunk.c │ │ │ │ ├── chunk_dss.c │ │ │ │ ├── chunk_mmap.c │ │ │ │ ├── ckh.c │ │ │ │ ├── ctl.c │ │ │ │ ├── extent.c │ │ │ │ ├── hash.c │ │ │ │ ├── huge.c │ │ │ │ ├── jemalloc.c │ │ │ │ ├── mb.c │ │ │ │ ├── mutex.c │ │ │ │ ├── nstime.c │ │ │ │ ├── pages.c │ │ │ │ ├── prng.c │ │ │ │ ├── prof.c │ │ │ │ ├── quarantine.c │ │ │ │ ├── rtree.c │ │ │ │ ├── spin.c │ │ │ │ ├── stats.c │ │ │ │ ├── tcache.c │ │ │ │ ├── ticker.c │ │ │ │ ├── tsd.c │ │ │ │ ├── util.c │ │ │ │ ├── valgrind.c │ │ │ │ ├── witness.c │ │ │ │ └── zone.c │ │ │ └── test │ │ │ │ ├── include │ │ │ │ └── test │ │ │ │ │ ├── SFMT-alti.h │ │ │ │ │ ├── SFMT-params.h │ │ │ │ │ ├── SFMT-params11213.h │ │ │ │ │ ├── SFMT-params1279.h │ │ │ │ │ ├── SFMT-params132049.h │ │ │ │ │ ├── SFMT-params19937.h │ │ │ │ │ ├── SFMT-params216091.h │ │ │ │ │ ├── SFMT-params2281.h │ │ │ │ │ ├── SFMT-params4253.h │ │ │ │ │ ├── SFMT-params44497.h │ │ │ │ │ ├── SFMT-params607.h │ │ │ │ │ ├── SFMT-params86243.h │ │ │ │ │ ├── SFMT-sse2.h │ │ │ │ │ ├── SFMT.h │ │ │ │ │ ├── btalloc.h │ │ │ │ │ ├── jemalloc_test.h.in │ │ │ │ │ ├── jemalloc_test_defs.h.in │ │ │ │ │ ├── math.h │ │ │ │ │ ├── mq.h │ │ │ │ │ ├── mtx.h │ │ │ │ │ ├── test.h │ │ │ │ │ ├── thd.h │ │ │ │ │ └── timer.h │ │ │ │ ├── integration │ │ │ │ ├── MALLOCX_ARENA.c │ │ │ │ ├── aligned_alloc.c │ │ │ │ ├── allocated.c │ │ │ │ ├── chunk.c │ │ │ │ ├── mallocx.c │ │ │ │ ├── overflow.c │ │ │ │ ├── posix_memalign.c │ │ │ │ ├── rallocx.c │ │ │ │ ├── sdallocx.c │ │ │ │ ├── thread_arena.c │ │ │ │ ├── thread_tcache_enabled.c │ │ │ │ └── xallocx.c │ │ │ │ ├── src │ │ │ │ ├── SFMT.c │ │ │ │ ├── btalloc.c │ │ │ │ ├── btalloc_0.c │ │ │ │ ├── btalloc_1.c │ │ │ │ ├── math.c │ │ │ │ ├── mq.c │ │ │ │ ├── mtx.c │ │ │ │ ├── test.c │ │ │ │ ├── thd.c │ │ │ │ └── timer.c │ │ │ │ ├── stress │ │ │ │ └── microbench.c │ │ │ │ ├── test.sh.in │ │ │ │ └── unit │ │ │ │ ├── SFMT.c │ │ │ │ ├── a0.c │ │ │ │ ├── arena_reset.c │ │ │ │ ├── atomic.c │ │ │ │ ├── bitmap.c │ │ │ │ ├── ckh.c │ │ │ │ ├── decay.c │ │ │ │ ├── fork.c │ │ │ │ ├── hash.c │ │ │ │ ├── junk.c │ │ │ │ ├── junk_alloc.c │ │ │ │ ├── junk_free.c │ │ │ │ ├── lg_chunk.c │ │ │ │ ├── mallctl.c │ │ │ │ ├── math.c │ │ │ │ ├── mq.c │ │ │ │ ├── mtx.c │ │ │ │ ├── nstime.c │ │ │ │ ├── pack.c │ │ │ │ ├── pages.c │ │ │ │ ├── ph.c │ │ │ │ ├── prng.c │ │ │ │ ├── prof_accum.c │ │ │ │ ├── prof_active.c │ │ │ │ ├── prof_gdump.c │ │ │ │ ├── prof_idump.c │ │ │ │ ├── prof_reset.c │ │ │ │ ├── prof_thread_name.c │ │ │ │ ├── ql.c │ │ │ │ ├── qr.c │ │ │ │ ├── quarantine.c │ │ │ │ ├── rb.c │ │ │ │ ├── rtree.c │ │ │ │ ├── run_quantize.c │ │ │ │ ├── size_classes.c │ │ │ │ ├── smoothstep.c │ │ │ │ ├── stats.c │ │ │ │ ├── ticker.c │ │ │ │ ├── tsd.c │ │ │ │ ├── util.c │ │ │ │ ├── witness.c │ │ │ │ └── zero.c │ │ │ ├── jemalloc.go │ │ │ └── jemalloc_test.go │ └── ugorji │ │ └── go │ │ ├── LICENSE │ │ └── codec │ │ ├── 0doc.go │ │ ├── README.md │ │ ├── binc.go │ │ ├── cbor.go │ │ ├── decode.go │ │ ├── decode_go.go │ │ ├── decode_go14.go │ │ ├── encode.go │ │ ├── fast-path.generated.go │ │ ├── fast-path.go.tmpl │ │ ├── fast-path.not.go │ │ ├── gen-dec-array.go.tmpl │ │ ├── gen-dec-map.go.tmpl │ │ ├── gen-helper.generated.go │ │ ├── gen-helper.go.tmpl │ │ ├── gen.generated.go │ │ ├── gen.go │ │ ├── gen_15.go │ │ ├── gen_16.go │ │ ├── gen_17.go │ │ ├── helper.go │ │ ├── helper_internal.go │ │ ├── helper_not_unsafe.go │ │ ├── helper_unsafe.go │ │ ├── json.go │ │ ├── msgpack.go │ │ ├── noop.go │ │ ├── prebuild.go │ │ ├── prebuild.sh │ │ ├── rpc.go │ │ ├── simple.go │ │ ├── test-cbor-goldens.json │ │ ├── test.py │ │ ├── tests.sh │ │ └── time.go ├── golang.org │ └── x │ │ └── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── context │ │ ├── context.go │ │ ├── go17.go │ │ └── pre_go17.go └── gopkg.in │ └── alexcesaro │ └── statsd.v2 │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── conn.go │ ├── doc.go │ ├── options.go │ └── statsd.go ├── version └── wandoujia_license.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/Dockerfile -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/MIT-LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/README.md -------------------------------------------------------------------------------- /admin/codis-dashboard-admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/admin/codis-dashboard-admin.sh -------------------------------------------------------------------------------- /admin/codis-fe-admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/admin/codis-fe-admin.sh -------------------------------------------------------------------------------- /admin/codis-proxy-admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/admin/codis-proxy-admin.sh -------------------------------------------------------------------------------- /admin/codis-server-admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/admin/codis-server-admin.sh -------------------------------------------------------------------------------- /ansible/group_vars/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/ansible/group_vars/all -------------------------------------------------------------------------------- /ansible/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/ansible/hosts -------------------------------------------------------------------------------- /ansible/roles/codis-dashboard/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/ansible/roles/codis-dashboard/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/codis-fe/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/ansible/roles/codis-fe/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/codis-proxy/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/ansible/roles/codis-proxy/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/codis-server/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/ansible/roles/codis-server/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/common/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/ansible/roles/common/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/redis-sentinel/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/ansible/roles/redis-sentinel/tasks/main.yml -------------------------------------------------------------------------------- /ansible/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/ansible/site.yml -------------------------------------------------------------------------------- /cmd/admin/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/admin/admin.go -------------------------------------------------------------------------------- /cmd/admin/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/admin/dashboard.go -------------------------------------------------------------------------------- /cmd/admin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/admin/main.go -------------------------------------------------------------------------------- /cmd/admin/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/admin/proxy.go -------------------------------------------------------------------------------- /cmd/dashboard/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/dashboard/main.go -------------------------------------------------------------------------------- /cmd/fe/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/css/main.css -------------------------------------------------------------------------------- /cmd/fe/assets/dashboard-fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/dashboard-fe.js -------------------------------------------------------------------------------- /cmd/fe/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/favicon.ico -------------------------------------------------------------------------------- /cmd/fe/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/index.html -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/angular-ui-bootstrap/.npmignore: -------------------------------------------------------------------------------- 1 | bower.json -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/node_modules/angular/README.md -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/node_modules/angular/index.js -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/bootstrap-dialog/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/bootstrap-dialog/.npmignore: -------------------------------------------------------------------------------- 1 | nbproject 2 | node_modules 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/bootstrap-dialog/examples/remote.html: -------------------------------------------------------------------------------- 1 | Hello, this is a message from remote.html! -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/node_modules/bootstrap/LICENSE -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/convert-hex/.npmignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | test/ -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/highcharts/js/modules/.eslintrc: -------------------------------------------------------------------------------- 1 | rules: 2 | indent: [2, "tab"] 3 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/highcharts/js/parts-3d/Outro.js: -------------------------------------------------------------------------------- 1 | 2 | })); 3 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/highcharts/js/parts-map/Outro.js: -------------------------------------------------------------------------------- 1 | 2 | })); 3 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/highcharts/js/parts-more/Outro.js: -------------------------------------------------------------------------------- 1 | 2 | })); 3 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/highcharts/js/parts/Outro.js: -------------------------------------------------------------------------------- 1 | 2 | return Highcharts; 3 | })); 4 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/jquery/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/jquery/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/node_modules/jquery/.jscsrc -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/jquery/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/node_modules/jquery/.npmignore -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/node_modules/jquery/README.md -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/node_modules/jquery/bower.json -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/node_modules/jquery/src/css.js -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/jquery/src/sizzle/test/data/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/sha256/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/node_modules/sha256/.npmignore -------------------------------------------------------------------------------- /cmd/fe/assets/node_modules/sha256/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/node_modules/sha256/README.md -------------------------------------------------------------------------------- /cmd/fe/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/assets/package.json -------------------------------------------------------------------------------- /cmd/fe/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/fe/main.go -------------------------------------------------------------------------------- /cmd/ha/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/ha/main.go -------------------------------------------------------------------------------- /cmd/proxy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/cmd/proxy/main.go -------------------------------------------------------------------------------- /config/dashboard.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/config/dashboard.toml -------------------------------------------------------------------------------- /config/proxy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/config/proxy.toml -------------------------------------------------------------------------------- /config/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/config/redis.conf -------------------------------------------------------------------------------- /config/sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/config/sentinel.conf -------------------------------------------------------------------------------- /dashboard-Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/dashboard-Dockerfile -------------------------------------------------------------------------------- /deploy/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @cd products && for d in `ls .`; do make -C $$d || exit 1; done 3 | -------------------------------------------------------------------------------- /deploy/products/alpha/.gitignore: -------------------------------------------------------------------------------- 1 | instance.json 2 | -------------------------------------------------------------------------------- /deploy/products/alpha/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | ./gen.py && ./render.py 3 | -------------------------------------------------------------------------------- /deploy/products/alpha/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/deploy/products/alpha/config.json -------------------------------------------------------------------------------- /deploy/products/alpha/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/deploy/products/alpha/gen.py -------------------------------------------------------------------------------- /deploy/products/alpha/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/deploy/products/alpha/render.py -------------------------------------------------------------------------------- /deploy/products/beta/.gitignore: -------------------------------------------------------------------------------- 1 | instance.json 2 | -------------------------------------------------------------------------------- /deploy/products/beta/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | ./gen.py && ./render.py 3 | -------------------------------------------------------------------------------- /deploy/products/beta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/deploy/products/beta/config.json -------------------------------------------------------------------------------- /deploy/products/beta/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/deploy/products/beta/gen.py -------------------------------------------------------------------------------- /deploy/products/beta/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/deploy/products/beta/render.py -------------------------------------------------------------------------------- /deploy/root/opt/codis/etc/demo-alpha: -------------------------------------------------------------------------------- 1 | 127.0.0.1_18080 -------------------------------------------------------------------------------- /deploy/root/opt/codis/etc/demo-beta: -------------------------------------------------------------------------------- 1 | 10.4.10.100_18080 -------------------------------------------------------------------------------- /deploy/templates/dashboard.service.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/deploy/templates/dashboard.service.template -------------------------------------------------------------------------------- /deploy/templates/dashboard.toml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/deploy/templates/dashboard.toml.template -------------------------------------------------------------------------------- /deploy/templates/proxy.service.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/deploy/templates/proxy.service.template -------------------------------------------------------------------------------- /deploy/templates/proxy.toml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/deploy/templates/proxy.toml.template -------------------------------------------------------------------------------- /doc/FAQ_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/FAQ_en.md -------------------------------------------------------------------------------- /doc/FAQ_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/FAQ_zh.md -------------------------------------------------------------------------------- /doc/bench1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench1/Makefile -------------------------------------------------------------------------------- /doc/bench1/bench.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench1/bench.pdf -------------------------------------------------------------------------------- /doc/bench1/bench.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench1/bench.plot -------------------------------------------------------------------------------- /doc/bench1/bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench1/bench.png -------------------------------------------------------------------------------- /doc/bench1/input1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench1/input1 -------------------------------------------------------------------------------- /doc/bench1/input2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench1/input2 -------------------------------------------------------------------------------- /doc/bench1/input3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench1/input3 -------------------------------------------------------------------------------- /doc/bench2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench2/Makefile -------------------------------------------------------------------------------- /doc/bench2/bench.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench2/bench.pdf -------------------------------------------------------------------------------- /doc/bench2/bench.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench2/bench.plot -------------------------------------------------------------------------------- /doc/bench2/bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench2/bench.png -------------------------------------------------------------------------------- /doc/bench2/input1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench2/input1 -------------------------------------------------------------------------------- /doc/bench2/input2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench2/input2 -------------------------------------------------------------------------------- /doc/bench2/input3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench2/input3 -------------------------------------------------------------------------------- /doc/bench2/input4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench2/input4 -------------------------------------------------------------------------------- /doc/bench2/input5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/bench2/input5 -------------------------------------------------------------------------------- /doc/benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/benchmark.md -------------------------------------------------------------------------------- /doc/pictures/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /doc/pictures/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/pictures/Makefile -------------------------------------------------------------------------------- /doc/pictures/addgroup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/pictures/addgroup.jpg -------------------------------------------------------------------------------- /doc/pictures/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/pictures/architecture.png -------------------------------------------------------------------------------- /doc/pictures/architecture.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/pictures/architecture.tex -------------------------------------------------------------------------------- /doc/pictures/logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/pictures/logo-1.png -------------------------------------------------------------------------------- /doc/pictures/logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/pictures/logo-2.png -------------------------------------------------------------------------------- /doc/pictures/logo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/pictures/logo-3.png -------------------------------------------------------------------------------- /doc/pictures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/pictures/logo.png -------------------------------------------------------------------------------- /doc/pictures/rebalance_slots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/pictures/rebalance_slots.jpg -------------------------------------------------------------------------------- /doc/pictures/snapshots1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/pictures/snapshots1.png -------------------------------------------------------------------------------- /doc/pictures/snapshots2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/pictures/snapshots2.png -------------------------------------------------------------------------------- /doc/pictures/snapshots3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/pictures/snapshots3.png -------------------------------------------------------------------------------- /doc/pictures/snapshots4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/pictures/snapshots4.png -------------------------------------------------------------------------------- /doc/redis_change_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/redis_change_zh.md -------------------------------------------------------------------------------- /doc/tutorial_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/tutorial_en.md -------------------------------------------------------------------------------- /doc/tutorial_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/tutorial_zh.md -------------------------------------------------------------------------------- /doc/unsupported_cmds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/doc/unsupported_cmds.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/example/dashboard.py -------------------------------------------------------------------------------- /example/fe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/example/fe.py -------------------------------------------------------------------------------- /example/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/example/proxy.py -------------------------------------------------------------------------------- /example/sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/example/sentinel.py -------------------------------------------------------------------------------- /example/sentinel_notify.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $@ >> sentinel_notify.log 4 | -------------------------------------------------------------------------------- /example/sentinel_reconfig.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $@ >> sentinel_reconfig.log 4 | -------------------------------------------------------------------------------- /example/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/example/server.py -------------------------------------------------------------------------------- /example/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/example/setup.py -------------------------------------------------------------------------------- /example/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/example/utils.py -------------------------------------------------------------------------------- /extern/.gitignore: -------------------------------------------------------------------------------- 1 | /Dockerfile 2 | -------------------------------------------------------------------------------- /extern/README.md: -------------------------------------------------------------------------------- 1 | codis's redis build & external librarys 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/.gitignore -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/BUGS: -------------------------------------------------------------------------------- 1 | Please check https://github.com/antirez/redis/issues 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/CONTRIBUTING -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/COPYING -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/INSTALL: -------------------------------------------------------------------------------- 1 | See README 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/MANIFESTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/MANIFESTO -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/Makefile -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/README -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/deps/Makefile -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/deps/jemalloc/config.stamp.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/deps/jemalloc/test/unit/prof_accum_a.c: -------------------------------------------------------------------------------- 1 | #include "prof_accum.h" 2 | 3 | alloc_n_gen(0) 4 | -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/deps/jemalloc/test/unit/prof_accum_b.c: -------------------------------------------------------------------------------- 1 | #include "prof_accum.h" 2 | 3 | alloc_n_gen(1) 4 | -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/deps/linenoise/.gitignore: -------------------------------------------------------------------------------- 1 | linenoise_example 2 | *.dSYM 3 | history.txt 4 | -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/redis.conf -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/runtest -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/sentinel.conf -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/Makefile -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/adlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/adlist.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/adlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/adlist.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/ae.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/ae.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/anet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/anet.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/anet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/anet.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/aof.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/bio.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/bio.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/bitops.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/config.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/config.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/crc32.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/crc64.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/crc64.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/db.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/debug.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/dict.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/dict.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/fmacros.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/help.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/intset.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/intset.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/latency.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/latency.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/lzf.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/lzfP.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/lzf_c.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/lzf_d.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/memtest.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/migrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/migrate.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/multi.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/notify.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/object.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/pqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/pqsort.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/pqsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/pqsort.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/pubsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/pubsub.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/rand.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/rand.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/rdb.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/rdb.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/redis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/redis.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/redis.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/release.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/rio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/rio.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/rio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/rio.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/sds.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/sds.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/sha1.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/sha1.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/slots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/slots.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/slowlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/slowlog.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/slowlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/slowlog.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/sort.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/syncio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/syncio.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/t_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/t_hash.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/t_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/t_list.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/t_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/t_set.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/t_zset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/t_zset.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/util.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/util.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/version.h: -------------------------------------------------------------------------------- 1 | #define REDIS_VERSION "2.8.21" 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/ziplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/ziplist.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/ziplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/ziplist.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/zipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/zipmap.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/zipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/zipmap.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/zmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/zmalloc.c -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/src/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-2.8.21/src/zmalloc.h -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/tests/sentinel/tests/03-runtime-reconf.tcl: -------------------------------------------------------------------------------- 1 | # Test runtime reconfiguration command SENTINEL SET. 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/tests/sentinel/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /extern/deprecated/redis-2.8.21/utils/hyperloglog/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/.gitignore -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/BUGS: -------------------------------------------------------------------------------- 1 | Please check https://github.com/antirez/redis/issues 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/CONTRIBUTING -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/COPYING -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/INSTALL: -------------------------------------------------------------------------------- 1 | See README 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/MANIFESTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/MANIFESTO -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/Makefile -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/README.md -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/deps/Makefile -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/deps/README.md -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/deps/jemalloc/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/deps/jemalloc/config.stamp.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/deps/jemalloc/msvc/projects/vc2015/test_threads/test_threads.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int test_threads(); 4 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/deps/linenoise/.gitignore: -------------------------------------------------------------------------------- 1 | linenoise_example 2 | *.dSYM 3 | history.txt 4 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/redis.conf -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/runtest -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/sentinel.conf -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/.gitignore -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/Makefile -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/adlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/adlist.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/adlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/adlist.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/ae.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/ae.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/ae_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/ae_epoll.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/anet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/anet.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/anet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/anet.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/aof.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/bio.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/bio.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/bitops.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/blocked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/blocked.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/cluster.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/cluster.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/config.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/config.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/crc16.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/crc32.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/crc64.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/crc64.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/db.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/debug.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/dict.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/dict.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/fmacros.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/geo.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/geo.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/help.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/intset.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/intset.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/latency.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/latency.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/lzf.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/lzfP.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/lzf_c.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/lzf_d.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/memtest.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/multi.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/notify.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/object.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/pqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/pqsort.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/pqsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/pqsort.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/pubsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/pubsub.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/rand.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/rand.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/rdb.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/rdb.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/release.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/rio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/rio.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/rio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/rio.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/sds.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/sds.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/sdsalloc.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/sentinel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/sentinel.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/server.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/server.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/sha1.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/sha1.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/slots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/slots.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/slowlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/slowlog.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/slowlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/slowlog.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/sort.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/syncio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/syncio.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/t_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/t_hash.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/t_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/t_list.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/t_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/t_set.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/t_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/t_string.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/t_zset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/t_zset.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/testhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/testhelp.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/util.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/util.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/version.h: -------------------------------------------------------------------------------- 1 | #define REDIS_VERSION "3.2.4" 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/ziplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/ziplist.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/ziplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/ziplist.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/zipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/zipmap.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/zipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/zipmap.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/zmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/zmalloc.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/src/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.4/src/zmalloc.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/tests/cluster/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/tests/sentinel/tests/03-runtime-reconf.tcl: -------------------------------------------------------------------------------- 1 | # Test runtime reconfiguration command SENTINEL SET. 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/tests/sentinel/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.4/utils/hyperloglog/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/.gitignore -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/BUGS: -------------------------------------------------------------------------------- 1 | Please check https://github.com/antirez/redis/issues 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/CONTRIBUTING -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/COPYING -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/INSTALL: -------------------------------------------------------------------------------- 1 | See README 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/MANIFESTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/MANIFESTO -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/Makefile -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/README.md -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/deps/Makefile -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/deps/README.md -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/deps/jemalloc/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/deps/jemalloc/config.stamp.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/deps/linenoise/.gitignore: -------------------------------------------------------------------------------- 1 | linenoise_example 2 | *.dSYM 3 | history.txt 4 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/patch/Makefile -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/patch/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/patch/run.sh -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/redis.conf -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/runtest -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/sentinel.conf -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/.gitignore -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/Makefile -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/adlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/adlist.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/adlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/adlist.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/ae.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/ae.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/ae_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/ae_epoll.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/anet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/anet.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/anet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/anet.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/aof.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/bio.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/bio.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/bitops.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/blocked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/blocked.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/cluster.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/cluster.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/config.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/config.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/crc16.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/crc32.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/crc64.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/crc64.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/db.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/debug.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/dict.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/dict.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/fmacros.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/geo.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/geo.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/help.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/intset.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/intset.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/latency.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/latency.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/lzf.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/lzfP.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/lzf_c.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/lzf_d.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/memtest.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/multi.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/notify.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/object.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/pqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/pqsort.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/pqsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/pqsort.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/pubsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/pubsub.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/rand.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/rand.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/rdb.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/rdb.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/release.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/release.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/release.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/rio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/rio.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/rio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/rio.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/sds.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/sds.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/sdsalloc.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/sentinel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/sentinel.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/server.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/server.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/sha1.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/sha1.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/slots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/slots.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/slowlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/slowlog.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/slowlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/slowlog.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/sort.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/syncio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/syncio.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/t_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/t_hash.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/t_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/t_list.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/t_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/t_set.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/t_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/t_string.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/t_zset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/t_zset.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/testhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/testhelp.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/util.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/util.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/version.h: -------------------------------------------------------------------------------- 1 | #define REDIS_VERSION "3.2.9" 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/ziplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/ziplist.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/ziplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/ziplist.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/zipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/zipmap.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/zipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/zipmap.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/zmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/zmalloc.c -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/src/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-3.2.8/src/zmalloc.h -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/tests/cluster/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/tests/sentinel/tests/03-runtime-reconf.tcl: -------------------------------------------------------------------------------- 1 | # Test runtime reconfiguration command SENTINEL SET. 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/tests/sentinel/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /extern/deprecated/redis-3.2.8/utils/hyperloglog/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-test/.gitignore: -------------------------------------------------------------------------------- 1 | test.log 2 | -------------------------------------------------------------------------------- /extern/deprecated/redis-test/basic_hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/basic_hash.go -------------------------------------------------------------------------------- /extern/deprecated/redis-test/basic_incr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/basic_incr.go -------------------------------------------------------------------------------- /extern/deprecated/redis-test/basic_mgrt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/basic_mgrt.go -------------------------------------------------------------------------------- /extern/deprecated/redis-test/bench/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/bench/Makefile -------------------------------------------------------------------------------- /extern/deprecated/redis-test/conf/6379.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/conf/6379.conf -------------------------------------------------------------------------------- /extern/deprecated/redis-test/conf/6380.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/conf/6380.conf -------------------------------------------------------------------------------- /extern/deprecated/redis-test/conf/6479.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/conf/6479.conf -------------------------------------------------------------------------------- /extern/deprecated/redis-test/conf/6480.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/conf/6480.conf -------------------------------------------------------------------------------- /extern/deprecated/redis-test/extra_del.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/extra_del.go -------------------------------------------------------------------------------- /extern/deprecated/redis-test/extra_incr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/extra_incr.go -------------------------------------------------------------------------------- /extern/deprecated/redis-test/extra_mget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/extra_mget.go -------------------------------------------------------------------------------- /extern/deprecated/redis-test/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/run_test.sh -------------------------------------------------------------------------------- /extern/deprecated/redis-test/tcl/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/tcl/runtest -------------------------------------------------------------------------------- /extern/deprecated/redis-test/test_hset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/test_hset.go -------------------------------------------------------------------------------- /extern/deprecated/redis-test/test_incr1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/test_incr1.go -------------------------------------------------------------------------------- /extern/deprecated/redis-test/test_incr2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/test_incr2.go -------------------------------------------------------------------------------- /extern/deprecated/redis-test/test_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/test_list.go -------------------------------------------------------------------------------- /extern/deprecated/redis-test/test_mget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/test_mget.go -------------------------------------------------------------------------------- /extern/deprecated/redis-test/test_mset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/test_mset.go -------------------------------------------------------------------------------- /extern/deprecated/redis-test/test_pttl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/test_pttl.go -------------------------------------------------------------------------------- /extern/deprecated/redis-test/test_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/test_string.go -------------------------------------------------------------------------------- /extern/deprecated/redis-test/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/deprecated/redis-test/utils.go -------------------------------------------------------------------------------- /extern/deprecated/scala-client/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 0.13.7 -------------------------------------------------------------------------------- /extern/redis-3.2.11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/.gitignore -------------------------------------------------------------------------------- /extern/redis-3.2.11/00-RELEASENOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/00-RELEASENOTES -------------------------------------------------------------------------------- /extern/redis-3.2.11/BUGS: -------------------------------------------------------------------------------- 1 | Please check https://github.com/antirez/redis/issues 2 | -------------------------------------------------------------------------------- /extern/redis-3.2.11/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/CONTRIBUTING -------------------------------------------------------------------------------- /extern/redis-3.2.11/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/COPYING -------------------------------------------------------------------------------- /extern/redis-3.2.11/INSTALL: -------------------------------------------------------------------------------- 1 | See README 2 | -------------------------------------------------------------------------------- /extern/redis-3.2.11/MANIFESTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/MANIFESTO -------------------------------------------------------------------------------- /extern/redis-3.2.11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/Makefile -------------------------------------------------------------------------------- /extern/redis-3.2.11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/README.md -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/Makefile -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/README.md -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/.gitignore -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/.travis.yml -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/COPYING -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/Makefile -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/README.md -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/async.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/async.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/dict.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/dict.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/fmacros.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/hiredis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/hiredis.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/hiredis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/hiredis.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/net.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/net.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/sds.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/sds.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/sdsalloc.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/test.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/hiredis/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/hiredis/zmalloc.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/.gitignore -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/COPYING -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/ChangeLog -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/INSTALL -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/README -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/VERSION -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/autogen.sh -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/config.stamp.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/config.sub -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/configure -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/install-sh -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/src/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/src/base.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/src/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/src/ckh.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/src/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/src/ctl.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/src/hash.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/src/huge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/src/huge.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/src/mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/src/mb.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/src/prof.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/src/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/src/tsd.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/src/util.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/jemalloc/src/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/jemalloc/src/zone.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/linenoise/.gitignore: -------------------------------------------------------------------------------- 1 | linenoise_example 2 | *.dSYM 3 | history.txt 4 | -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/linenoise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/linenoise/Makefile -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/linenoise/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/linenoise/example.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/COPYRIGHT -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/HISTORY -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/INSTALL -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/Makefile -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/README -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/doc/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/doc/cover.png -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/doc/logo.gif -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/doc/lua.1 -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/doc/lua.css -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/doc/lua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/doc/lua.html -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/doc/luac.1 -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/doc/luac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/doc/luac.html -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/doc/manual.css -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/doc/manual.html -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/doc/readme.html -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/etc/Makefile -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/etc/README -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/etc/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/etc/all.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/etc/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/etc/lua.hpp -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/etc/lua.ico -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/etc/lua.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/etc/lua.pc -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/etc/luavs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/etc/luavs.bat -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/etc/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/etc/min.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/Makefile -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/fpconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/fpconv.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/fpconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/fpconv.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lapi.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lapi.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lcode.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lcode.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/ldblib.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/ldebug.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/ldebug.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/ldo.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/ldo.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/ldump.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lfunc.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lfunc.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lgc.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lgc.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/linit.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/liolib.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/llex.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/llex.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lmem.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lmem.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/loslib.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lstate.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lstate.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/ltable.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/ltable.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/ltm.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/ltm.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lua.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lua.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/luac.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lualib.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lvm.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lvm.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lzio.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/lzio.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/print.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/strbuf.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/src/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/src/strbuf.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/test/README -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/test/cf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/test/cf.lua -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/test/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/test/env.lua -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/test/fib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/test/fib.lua -------------------------------------------------------------------------------- /extern/redis-3.2.11/deps/lua/test/xd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/deps/lua/test/xd.lua -------------------------------------------------------------------------------- /extern/redis-3.2.11/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/patch/Makefile -------------------------------------------------------------------------------- /extern/redis-3.2.11/patch/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/patch/run.sh -------------------------------------------------------------------------------- /extern/redis-3.2.11/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/redis.conf -------------------------------------------------------------------------------- /extern/redis-3.2.11/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/runtest -------------------------------------------------------------------------------- /extern/redis-3.2.11/runtest-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/runtest-cluster -------------------------------------------------------------------------------- /extern/redis-3.2.11/runtest-sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/runtest-sentinel -------------------------------------------------------------------------------- /extern/redis-3.2.11/sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/sentinel.conf -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/.gitignore -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/Makefile -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/Makefile.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/Makefile.dep -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/adlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/adlist.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/adlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/adlist.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/ae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/ae.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/ae.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/ae_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/ae_epoll.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/ae_evport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/ae_evport.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/ae_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/ae_kqueue.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/ae_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/ae_select.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/anet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/anet.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/anet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/anet.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/aof.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/asciilogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/asciilogo.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/bio.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/bio.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/bitops.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/blocked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/blocked.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/cluster.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/cluster.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/config.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/config.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/crc16.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/crc32.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/crc64.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/crc64.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/db.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/debug.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/debugmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/debugmacro.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/dict.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/dict.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/endianconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/endianconv.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/endianconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/endianconv.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/fmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/fmacros.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/geo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/geo.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/geo.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/help.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/hyperloglog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/hyperloglog.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/intset.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/intset.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/latency.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/latency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/latency.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/lzf.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/lzfP.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/lzf_c.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/lzf_d.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/memtest.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/mkreleasehdr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/mkreleasehdr.sh -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/multi.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/networking.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/notify.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/object.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/pqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/pqsort.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/pqsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/pqsort.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/pubsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/pubsub.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/quicklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/quicklist.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/quicklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/quicklist.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/rand.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/rand.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/rdb.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/rdb.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/redis-benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/redis-benchmark.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/redis-check-aof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/redis-check-aof.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/redis-check-rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/redis-check-rdb.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/redis-cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/redis-cli.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/redis-trib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/redis-trib.rb -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/redisassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/redisassert.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/release.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/replication.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/rio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/rio.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/rio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/rio.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/scripting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/scripting.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/sds.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/sds.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/sdsalloc.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/sentinel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/sentinel.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/server.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/server.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/setproctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/setproctitle.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/sha1.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/sha1.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/slots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/slots.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/slots_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/slots_async.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/slowlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/slowlog.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/slowlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/slowlog.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/solarisfixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/solarisfixes.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/sort.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/sparkline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/sparkline.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/sparkline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/sparkline.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/syncio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/syncio.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/t_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/t_hash.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/t_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/t_list.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/t_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/t_set.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/t_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/t_string.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/t_zset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/t_zset.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/testhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/testhelp.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/util.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/util.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/valgrind.sup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/valgrind.sup -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/version.h: -------------------------------------------------------------------------------- 1 | #define REDIS_VERSION "3.2.11" 2 | -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/ziplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/ziplist.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/ziplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/ziplist.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/zipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/zipmap.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/zipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/zipmap.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/zmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/zmalloc.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/src/zmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/src/zmalloc.h -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/cluster/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/cluster/run.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/cluster/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/instances.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/instances.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/sentinel/tests/03-runtime-reconf.tcl: -------------------------------------------------------------------------------- 1 | # Test runtime reconfiguration command SENTINEL SET. 2 | -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/sentinel/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | redis_* 2 | sentinel_* 3 | -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/test_helper.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/test_helper.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/unit/aofrw.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/unit/aofrw.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/unit/auth.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/unit/auth.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/unit/bitops.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/unit/bitops.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/unit/dump.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/unit/dump.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/unit/expire.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/unit/expire.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/unit/geo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/unit/geo.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/unit/limits.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/unit/limits.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/unit/multi.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/unit/multi.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/unit/other.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/unit/other.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/unit/pubsub.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/unit/pubsub.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/unit/quit.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/unit/quit.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/unit/scan.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/unit/scan.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/tests/unit/sort.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/tests/unit/sort.tcl -------------------------------------------------------------------------------- /extern/redis-3.2.11/utils/corrupt_rdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/utils/corrupt_rdb.c -------------------------------------------------------------------------------- /extern/redis-3.2.11/utils/hyperloglog/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /extern/redis-3.2.11/utils/lru/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/utils/lru/README -------------------------------------------------------------------------------- /extern/redis-3.2.11/utils/lru/test-lru.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/utils/lru/test-lru.rb -------------------------------------------------------------------------------- /extern/redis-3.2.11/utils/redis-copy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/utils/redis-copy.rb -------------------------------------------------------------------------------- /extern/redis-3.2.11/utils/redis-sha1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/utils/redis-sha1.rb -------------------------------------------------------------------------------- /extern/redis-3.2.11/utils/whatisdoing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/extern/redis-3.2.11/utils/whatisdoing.sh -------------------------------------------------------------------------------- /fe-Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/fe-Dockerfile -------------------------------------------------------------------------------- /kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/kubernetes/README.md -------------------------------------------------------------------------------- /kubernetes/codis-dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/kubernetes/codis-dashboard.yaml -------------------------------------------------------------------------------- /kubernetes/codis-fe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/kubernetes/codis-fe.yaml -------------------------------------------------------------------------------- /kubernetes/codis-ha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/kubernetes/codis-ha.yaml -------------------------------------------------------------------------------- /kubernetes/codis-proxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/kubernetes/codis-proxy.yaml -------------------------------------------------------------------------------- /kubernetes/codis-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/kubernetes/codis-server.yaml -------------------------------------------------------------------------------- /kubernetes/codis-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/kubernetes/codis-service.yaml -------------------------------------------------------------------------------- /kubernetes/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/kubernetes/start.sh -------------------------------------------------------------------------------- /kubernetes/zookeeper/zookeeper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/kubernetes/zookeeper/zookeeper.yaml -------------------------------------------------------------------------------- /pkg/models/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/models/action.go -------------------------------------------------------------------------------- /pkg/models/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/models/client.go -------------------------------------------------------------------------------- /pkg/models/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/models/encode.go -------------------------------------------------------------------------------- /pkg/models/etcd/etcdclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/models/etcd/etcdclient.go -------------------------------------------------------------------------------- /pkg/models/fs/fsclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/models/fs/fsclient.go -------------------------------------------------------------------------------- /pkg/models/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/models/group.go -------------------------------------------------------------------------------- /pkg/models/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/models/proxy.go -------------------------------------------------------------------------------- /pkg/models/sentinel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/models/sentinel.go -------------------------------------------------------------------------------- /pkg/models/slots.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/models/slots.go -------------------------------------------------------------------------------- /pkg/models/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/models/sorter.go -------------------------------------------------------------------------------- /pkg/models/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/models/store.go -------------------------------------------------------------------------------- /pkg/models/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/models/table.go -------------------------------------------------------------------------------- /pkg/models/topom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/models/topom.go -------------------------------------------------------------------------------- /pkg/models/zk/zkclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/models/zk/zkclient.go -------------------------------------------------------------------------------- /pkg/proxy/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/backend.go -------------------------------------------------------------------------------- /pkg/proxy/backend_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/backend_test.go -------------------------------------------------------------------------------- /pkg/proxy/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/config.go -------------------------------------------------------------------------------- /pkg/proxy/delay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/delay.go -------------------------------------------------------------------------------- /pkg/proxy/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/forward.go -------------------------------------------------------------------------------- /pkg/proxy/jodis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/jodis.go -------------------------------------------------------------------------------- /pkg/proxy/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/mapper.go -------------------------------------------------------------------------------- /pkg/proxy/mapper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/mapper_test.go -------------------------------------------------------------------------------- /pkg/proxy/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/metrics.go -------------------------------------------------------------------------------- /pkg/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/proxy.go -------------------------------------------------------------------------------- /pkg/proxy/proxy_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/proxy_api.go -------------------------------------------------------------------------------- /pkg/proxy/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/proxy_test.go -------------------------------------------------------------------------------- /pkg/proxy/redis/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/redis/conn.go -------------------------------------------------------------------------------- /pkg/proxy/redis/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/redis/conn_test.go -------------------------------------------------------------------------------- /pkg/proxy/redis/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/redis/decoder.go -------------------------------------------------------------------------------- /pkg/proxy/redis/decoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/redis/decoder_test.go -------------------------------------------------------------------------------- /pkg/proxy/redis/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/redis/encoder.go -------------------------------------------------------------------------------- /pkg/proxy/redis/encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/redis/encoder_test.go -------------------------------------------------------------------------------- /pkg/proxy/redis/resp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/redis/resp.go -------------------------------------------------------------------------------- /pkg/proxy/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/request.go -------------------------------------------------------------------------------- /pkg/proxy/request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/request_test.go -------------------------------------------------------------------------------- /pkg/proxy/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/router.go -------------------------------------------------------------------------------- /pkg/proxy/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/session.go -------------------------------------------------------------------------------- /pkg/proxy/slots.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/slots.go -------------------------------------------------------------------------------- /pkg/proxy/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/proxy/stats.go -------------------------------------------------------------------------------- /pkg/topom/.gitignore: -------------------------------------------------------------------------------- 1 | /gotest.tmp 2 | -------------------------------------------------------------------------------- /pkg/topom/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/config.go -------------------------------------------------------------------------------- /pkg/topom/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/context.go -------------------------------------------------------------------------------- /pkg/topom/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/context_test.go -------------------------------------------------------------------------------- /pkg/topom/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/manager.go -------------------------------------------------------------------------------- /pkg/topom/topom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom.go -------------------------------------------------------------------------------- /pkg/topom/topom_action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_action.go -------------------------------------------------------------------------------- /pkg/topom/topom_action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_action_test.go -------------------------------------------------------------------------------- /pkg/topom/topom_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_api.go -------------------------------------------------------------------------------- /pkg/topom/topom_api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_api_test.go -------------------------------------------------------------------------------- /pkg/topom/topom_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_cache.go -------------------------------------------------------------------------------- /pkg/topom/topom_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_cache_test.go -------------------------------------------------------------------------------- /pkg/topom/topom_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_group.go -------------------------------------------------------------------------------- /pkg/topom/topom_group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_group_test.go -------------------------------------------------------------------------------- /pkg/topom/topom_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_proxy.go -------------------------------------------------------------------------------- /pkg/topom/topom_proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_proxy_test.go -------------------------------------------------------------------------------- /pkg/topom/topom_sentinel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_sentinel.go -------------------------------------------------------------------------------- /pkg/topom/topom_slots.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_slots.go -------------------------------------------------------------------------------- /pkg/topom/topom_slots_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_slots_test.go -------------------------------------------------------------------------------- /pkg/topom/topom_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_stats.go -------------------------------------------------------------------------------- /pkg/topom/topom_stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_stats_test.go -------------------------------------------------------------------------------- /pkg/topom/topom_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_table.go -------------------------------------------------------------------------------- /pkg/topom/topom_table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_table_test.go -------------------------------------------------------------------------------- /pkg/topom/topom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/topom/topom_test.go -------------------------------------------------------------------------------- /pkg/utils/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/args.go -------------------------------------------------------------------------------- /pkg/utils/assert/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/assert/assert.go -------------------------------------------------------------------------------- /pkg/utils/bufio2/bufio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/bufio2/bufio.go -------------------------------------------------------------------------------- /pkg/utils/bufio2/bufio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/bufio2/bufio_test.go -------------------------------------------------------------------------------- /pkg/utils/bufio2/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/bufio2/slice.go -------------------------------------------------------------------------------- /pkg/utils/bytesize/bytesize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/bytesize/bytesize.go -------------------------------------------------------------------------------- /pkg/utils/bytesize/bytesize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/bytesize/bytesize_test.go -------------------------------------------------------------------------------- /pkg/utils/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/errors/errors.go -------------------------------------------------------------------------------- /pkg/utils/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/log/log.go -------------------------------------------------------------------------------- /pkg/utils/log/rolling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/log/rolling.go -------------------------------------------------------------------------------- /pkg/utils/math2/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/math2/math.go -------------------------------------------------------------------------------- /pkg/utils/math2/math_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/math2/math_test.go -------------------------------------------------------------------------------- /pkg/utils/redis/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/redis/client.go -------------------------------------------------------------------------------- /pkg/utils/redis/sentinel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/redis/sentinel.go -------------------------------------------------------------------------------- /pkg/utils/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/resolver.go -------------------------------------------------------------------------------- /pkg/utils/resolver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/resolver_test.go -------------------------------------------------------------------------------- /pkg/utils/rpc/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/rpc/api.go -------------------------------------------------------------------------------- /pkg/utils/rpc/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/rpc/crypto.go -------------------------------------------------------------------------------- /pkg/utils/sync2/atomic2/atomic64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/sync2/atomic2/atomic64.go -------------------------------------------------------------------------------- /pkg/utils/sync2/atomic2/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/sync2/atomic2/bool.go -------------------------------------------------------------------------------- /pkg/utils/sync2/future.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/sync2/future.go -------------------------------------------------------------------------------- /pkg/utils/timesize/timesize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/timesize/timesize.go -------------------------------------------------------------------------------- /pkg/utils/timesize/timesize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/timesize/timesize_test.go -------------------------------------------------------------------------------- /pkg/utils/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/trace/trace.go -------------------------------------------------------------------------------- /pkg/utils/unsafe2/cgo_malloc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/unsafe2/cgo_malloc.go -------------------------------------------------------------------------------- /pkg/utils/unsafe2/cgo_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/unsafe2/cgo_slice.go -------------------------------------------------------------------------------- /pkg/utils/unsafe2/go_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/unsafe2/go_slice.go -------------------------------------------------------------------------------- /pkg/utils/unsafe2/je_malloc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/unsafe2/je_malloc.go -------------------------------------------------------------------------------- /pkg/utils/unsafe2/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/unsafe2/slice.go -------------------------------------------------------------------------------- /pkg/utils/unsafe2/slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/unsafe2/slice_test.go -------------------------------------------------------------------------------- /pkg/utils/unsafe2/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/unsafe2/string.go -------------------------------------------------------------------------------- /pkg/utils/unsafe2/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/unsafe2/string_test.go -------------------------------------------------------------------------------- /pkg/utils/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/usage.go -------------------------------------------------------------------------------- /pkg/utils/usage_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/usage_linux.go -------------------------------------------------------------------------------- /pkg/utils/usage_rusage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/pkg/utils/usage_rusage.go -------------------------------------------------------------------------------- /proxy-Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/proxy-Dockerfile -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | /log 2 | /tmp 3 | -------------------------------------------------------------------------------- /scripts/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/scripts/docker.sh -------------------------------------------------------------------------------- /scripts/static_slots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/scripts/static_slots.py -------------------------------------------------------------------------------- /sentinel-Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/sentinel-Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/BurntSushi/toml/COPYING -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/BurntSushi/toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/BurntSushi/toml/lex.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/session.vim: -------------------------------------------------------------------------------- 1 | au BufWritePost *.go silent!make tags > /dev/null 2>&1 2 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/coreos/etcd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/coreos/etcd/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/emirpasic/gods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/emirpasic/gods/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/garyburd/redigo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/garyburd/redigo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-martini/martini/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/golang@1.1.1 -------------------------------------------------------------------------------- /vendor/github.com/martini-contrib/binding/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/golang@1.1.1 -------------------------------------------------------------------------------- /vendor/github.com/martini-contrib/gzip/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/golang@1.1.1 -------------------------------------------------------------------------------- /vendor/github.com/martini-contrib/render/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/golang@1.1.1 -------------------------------------------------------------------------------- /vendor/github.com/oxtoacart/bpool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/oxtoacart/bpool/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spinlock/jemalloc-go/.gitignore: -------------------------------------------------------------------------------- 1 | /lib 2 | /jemalloc 3 | /VERSION 4 | 5 | je_*.c 6 | *.swp 7 | -------------------------------------------------------------------------------- /vendor/github.com/spinlock/jemalloc-go/jemalloc-4.4.0/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/spinlock/jemalloc-go/jemalloc-4.4.0/config.stamp.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/ugorji/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/0doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/ugorji/go/codec/0doc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/binc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/ugorji/go/codec/binc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/cbor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/ugorji/go/codec/cbor.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/ugorji/go/codec/gen.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/ugorji/go/codec/json.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/ugorji/go/codec/noop.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/prebuild.go: -------------------------------------------------------------------------------- 1 | package codec 2 | 3 | //go:generate bash prebuild.sh 4 | -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/ugorji/go/codec/rpc.go -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/ugorji/go/codec/test.py -------------------------------------------------------------------------------- /vendor/github.com/ugorji/go/codec/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/github.com/ugorji/go/codec/time.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/version -------------------------------------------------------------------------------- /wandoujia_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kernelai/codis/HEAD/wandoujia_license.txt --------------------------------------------------------------------------------