Created
August 6, 2014 14:45
-
-
Save benbjohnson/5b4fb2ffb6874484e586 to your computer and use it in GitHub Desktop.
ledisdb+bolt cpu pprof w/o NoSync
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" | |
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
<!-- Generated by graphviz version 2.32.0 (20130801.1934) | |
--> | |
<!-- Title: /Users/benbjohnson/go/bin/ledis-server; 3874 samples Pages: 1 --> | |
<svg width="100%" height="100%" | |
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
<script type="text/ecmascript"><![CDATA[ | |
// SVGPan | |
// http://www.cyberz.org/blog/2009/12/08/svgpan-a-javascript-svg-panzoomdrag-library/ | |
// Local modification: if(true || ...) below to force panning, never moving. | |
// Local modification: add clamping to fix bug in handleMouseWheel. | |
/** | |
* SVGPan library 1.2 | |
* ==================== | |
* | |
* Given an unique existing element with id "viewport", including the | |
* the library into any SVG adds the following capabilities: | |
* | |
* - Mouse panning | |
* - Mouse zooming (using the wheel) | |
* - Object dargging | |
* | |
* Known issues: | |
* | |
* - Zooming (while panning) on Safari has still some issues | |
* | |
* Releases: | |
* | |
* 1.2, Sat Mar 20 08:42:50 GMT 2010, Zeng Xiaohui | |
* Fixed a bug with browser mouse handler interaction | |
* | |
* 1.1, Wed Feb 3 17:39:33 GMT 2010, Zeng Xiaohui | |
* Updated the zoom code to support the mouse wheel on Safari/Chrome | |
* | |
* 1.0, Andrea Leofreddi | |
* First release | |
* | |
* This code is licensed under the following BSD license: | |
* | |
* Copyright 2009-2010 Andrea Leofreddi <[email protected]>. All rights reserved. | |
* | |
* Redistribution and use in source and binary forms, with or without modification, are | |
* permitted provided that the following conditions are met: | |
* | |
* 1. Redistributions of source code must retain the above copyright notice, this list of | |
* conditions and the following disclaimer. | |
* | |
* 2. Redistributions in binary form must reproduce the above copyright notice, this list | |
* of conditions and the following disclaimer in the documentation and/or other materials | |
* provided with the distribution. | |
* | |
* THIS SOFTWARE IS PROVIDED BY Andrea Leofreddi ``AS IS'' AND ANY EXPRESS OR IMPLIED | |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND | |
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Andrea Leofreddi OR | |
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | |
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
* | |
* The views and conclusions contained in the software and documentation are those of the | |
* authors and should not be interpreted as representing official policies, either expressed | |
* or implied, of Andrea Leofreddi. | |
*/ | |
var root = document.documentElement; | |
var state = 'none', stateTarget, stateOrigin, stateTf; | |
setupHandlers(root); | |
/** | |
* Register handlers | |
*/ | |
function setupHandlers(root){ | |
setAttributes(root, { | |
"onmouseup" : "add(evt)", | |
"onmousedown" : "handleMouseDown(evt)", | |
"onmousemove" : "handleMouseMove(evt)", | |
"onmouseup" : "handleMouseUp(evt)", | |
//"onmouseout" : "handleMouseUp(evt)", // Decomment this to stop the pan functionality when dragging out of the SVG element | |
}); | |
if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0) | |
window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari | |
else | |
window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others | |
var g = svgDoc.getElementById("svg"); | |
g.width = "100%"; | |
g.height = "100%"; | |
} | |
/** | |
* Instance an SVGPoint object with given event coordinates. | |
*/ | |
function getEventPoint(evt) { | |
var p = root.createSVGPoint(); | |
p.x = evt.clientX; | |
p.y = evt.clientY; | |
return p; | |
} | |
/** | |
* Sets the current transform matrix of an element. | |
*/ | |
function setCTM(element, matrix) { | |
var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")"; | |
element.setAttribute("transform", s); | |
} | |
/** | |
* Dumps a matrix to a string (useful for debug). | |
*/ | |
function dumpMatrix(matrix) { | |
var s = "[ " + matrix.a + ", " + matrix.c + ", " + matrix.e + "\n " + matrix.b + ", " + matrix.d + ", " + matrix.f + "\n 0, 0, 1 ]"; | |
return s; | |
} | |
/** | |
* Sets attributes of an element. | |
*/ | |
function setAttributes(element, attributes){ | |
for (i in attributes) | |
element.setAttributeNS(null, i, attributes[i]); | |
} | |
/** | |
* Handle mouse move event. | |
*/ | |
function handleMouseWheel(evt) { | |
if(evt.preventDefault) | |
evt.preventDefault(); | |
evt.returnValue = false; | |
var svgDoc = evt.target.ownerDocument; | |
var delta; | |
if(evt.wheelDelta) | |
delta = evt.wheelDelta / 3600; // Chrome/Safari | |
else | |
delta = evt.detail / -90; // Mozilla | |
var z = 1 + delta; // Zoom factor: 0.9/1.1 | |
// Clamp to reasonable values. | |
// The 0.1 check is important because | |
// a very large scroll can turn into a | |
// negative z, which rotates the image 180 degrees. | |
if(z < 0.1) | |
z = 0.1; | |
if(z > 10.0) | |
z = 10.0; | |
var g = svgDoc.getElementById("viewport"); | |
var p = getEventPoint(evt); | |
p = p.matrixTransform(g.getCTM().inverse()); | |
// Compute new scale matrix in current mouse position | |
var k = root.createSVGMatrix().translate(p.x, p.y).scale(z).translate(-p.x, -p.y); | |
setCTM(g, g.getCTM().multiply(k)); | |
stateTf = stateTf.multiply(k.inverse()); | |
} | |
/** | |
* Handle mouse move event. | |
*/ | |
function handleMouseMove(evt) { | |
if(evt.preventDefault) | |
evt.preventDefault(); | |
evt.returnValue = false; | |
var svgDoc = evt.target.ownerDocument; | |
var g = svgDoc.getElementById("viewport"); | |
if(state == 'pan') { | |
// Pan mode | |
var p = getEventPoint(evt).matrixTransform(stateTf); | |
setCTM(g, stateTf.inverse().translate(p.x - stateOrigin.x, p.y - stateOrigin.y)); | |
} else if(state == 'move') { | |
// Move mode | |
var p = getEventPoint(evt).matrixTransform(g.getCTM().inverse()); | |
setCTM(stateTarget, root.createSVGMatrix().translate(p.x - stateOrigin.x, p.y - stateOrigin.y).multiply(g.getCTM().inverse()).multiply(stateTarget.getCTM())); | |
stateOrigin = p; | |
} | |
} | |
/** | |
* Handle click event. | |
*/ | |
function handleMouseDown(evt) { | |
if(evt.preventDefault) | |
evt.preventDefault(); | |
evt.returnValue = false; | |
var svgDoc = evt.target.ownerDocument; | |
var g = svgDoc.getElementById("viewport"); | |
if(true || evt.target.tagName == "svg") { | |
// Pan mode | |
state = 'pan'; | |
stateTf = g.getCTM().inverse(); | |
stateOrigin = getEventPoint(evt).matrixTransform(stateTf); | |
} else { | |
// Move mode | |
state = 'move'; | |
stateTarget = evt.target; | |
stateTf = g.getCTM().inverse(); | |
stateOrigin = getEventPoint(evt).matrixTransform(stateTf); | |
} | |
} | |
/** | |
* Handle mouse button release event. | |
*/ | |
function handleMouseUp(evt) { | |
if(evt.preventDefault) | |
evt.preventDefault(); | |
evt.returnValue = false; | |
var svgDoc = evt.target.ownerDocument; | |
if(state == 'pan' || state == 'move') { | |
// Quit pan mode | |
state = ''; | |
} | |
} | |
]]></script> | |
<g id="viewport" transform="translate(0,0)"> | |
<g id="viewport" class="graph" transform="scale(1 1) rotate(0) translate(4 1782)"> | |
<title>/Users/benbjohnson/go/bin/ledis-server; 3874 samples</title> | |
<polygon fill="white" stroke="white" points="-4,5 -4,-1782 3554,-1782 3554,5 -4,5"/> | |
<!-- Legend --> | |
<g id="node1" class="node"><title>Legend</title> | |
<text text-anchor="start" x="781.498" y="-1750" font-family="Times,serif" font-size="24.00">/Users/benbjohnson/go/bin/ledis-server</text> | |
<text text-anchor="start" x="781.498" y="-1721.2" font-family="Times,serif" font-size="24.00">Total samples: 3874</text> | |
<text text-anchor="start" x="781.498" y="-1692.4" font-family="Times,serif" font-size="24.00">Focusing on: 3874</text> | |
<text text-anchor="start" x="781.498" y="-1663.6" font-family="Times,serif" font-size="24.00">Dropped nodes with <= 19 abs(samples)</text> | |
<text text-anchor="start" x="781.498" y="-1634.8" font-family="Times,serif" font-size="24.00">Dropped edges with <= 3 samples</text> | |
</g> | |
<!-- N1 --> | |
<g id="node2" class="node"><title>N1</title> | |
<polygon fill="none" stroke="black" points="1269.32,-1720.3 1196.68,-1720.3 1196.68,-1683.7 1269.32,-1683.7 1269.32,-1720.3"/> | |
<text text-anchor="middle" x="1233" y="-1708.4" font-family="Times,serif" font-size="8.00">runtime.gosched0</text> | |
<text text-anchor="end" x="1261.55" y="-1698.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1261.55" y="-1689.2" font-family="Times,serif" font-size="8.00">of 2903 (74.9%)</text> | |
</g> | |
<!-- N2 --> | |
<g id="node3" class="node"><title>N2</title> | |
<polygon fill="none" stroke="black" points="1316.32,-1568.3 1149.68,-1568.3 1149.68,-1531.7 1316.32,-1531.7 1316.32,-1568.3"/> | |
<text text-anchor="middle" x="1233" y="-1556.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.func·003</text> | |
<text text-anchor="end" x="1308.21" y="-1546.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1308.21" y="-1537.2" font-family="Times,serif" font-size="8.00">of 2109 (54.4%)</text> | |
</g> | |
<!-- N1->N2 --> | |
<g id="edge18" class="edge"><title>N1->N2</title> | |
<path fill="none" stroke="black" stroke-width="2" d="M1233,-1683.5C1233,-1657.64 1233,-1609.01 1233,-1578.4"/> | |
<polygon fill="black" stroke="black" points="1236.5,-1578.39 1233,-1568.39 1229.5,-1578.39 1236.5,-1578.39"/> | |
<text text-anchor="middle" x="1247" y="-1593.4" font-family="Times,serif" font-size="14.00">2109</text> | |
</g> | |
<!-- N15 --> | |
<g id="node16" class="node"><title>N15</title> | |
<polygon fill="none" stroke="black" points="2239.31,-1568.3 2046.69,-1568.3 2046.69,-1531.7 2239.31,-1531.7 2239.31,-1568.3"/> | |
<text text-anchor="middle" x="2143" y="-1556.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.(*respClient).run</text> | |
<text text-anchor="end" x="2231.54" y="-1546.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2231.54" y="-1537.2" font-family="Times,serif" font-size="8.00">of 630 (16.3%)</text> | |
</g> | |
<!-- N1->N15 --> | |
<g id="edge33" class="edge"><title>N1->N15</title> | |
<path fill="none" stroke="black" d="M1269.52,-1694.98C1398.06,-1673.79 1832.79,-1602.13 2036.29,-1568.59"/> | |
<polygon fill="black" stroke="black" points="2037.09,-1572 2046.39,-1566.92 2035.96,-1565.1 2037.09,-1572"/> | |
<text text-anchor="middle" x="1909.5" y="-1593.4" font-family="Times,serif" font-size="14.00">630</text> | |
</g> | |
<!-- N52 --> | |
<g id="node53" class="node"><title>N52</title> | |
<polygon fill="none" stroke="black" points="1738.32,-1463.3 1553.68,-1463.3 1553.68,-1426.7 1738.32,-1426.7 1738.32,-1463.3"/> | |
<text text-anchor="middle" x="1646" y="-1451.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.lpopCommand</text> | |
<text text-anchor="end" x="1730.88" y="-1441.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1730.88" y="-1432.2" font-family="Times,serif" font-size="8.00">of 224 (5.8%)</text> | |
</g> | |
<!-- N2->N52 --> | |
<g id="edge70" class="edge"><title>N2->N52</title> | |
<path fill="none" stroke="black" d="M1307.63,-1531.69C1370.73,-1516.9 1463.46,-1494.76 1544,-1474 1553.84,-1471.46 1564.19,-1468.72 1574.37,-1465.97"/> | |
<polygon fill="black" stroke="black" points="1575.32,-1469.34 1584.05,-1463.34 1573.48,-1462.58 1575.32,-1469.34"/> | |
<text text-anchor="middle" x="1478.5" y="-1495.4" font-family="Times,serif" font-size="14.00">224</text> | |
</g> | |
<!-- N58 --> | |
<g id="node59" class="node"><title>N58</title> | |
<polygon fill="none" stroke="black" points="1948.15,-1463.3 1757.85,-1463.3 1757.85,-1426.7 1948.15,-1426.7 1948.15,-1463.3"/> | |
<text text-anchor="middle" x="1853" y="-1451.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.lrangeCommand</text> | |
<text text-anchor="end" x="1940.77" y="-1441.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1940.77" y="-1432.2" font-family="Times,serif" font-size="8.00">of 206 (5.3%)</text> | |
</g> | |
<!-- N2->N58 --> | |
<g id="edge66" class="edge"><title>N2->N58</title> | |
<path fill="none" stroke="black" d="M1316.29,-1539.79C1418.37,-1527.83 1596.35,-1504.78 1747,-1474 1758.51,-1471.65 1770.63,-1468.8 1782.4,-1465.84"/> | |
<polygon fill="black" stroke="black" points="1783.36,-1469.2 1792.18,-1463.33 1781.63,-1462.42 1783.36,-1469.2"/> | |
<text text-anchor="middle" x="1660.5" y="-1495.4" font-family="Times,serif" font-size="14.00">206</text> | |
</g> | |
<!-- N61 --> | |
<g id="node62" class="node"><title>N61</title> | |
<polygon fill="none" stroke="black" points="891.49,-1463.3 702.51,-1463.3 702.51,-1426.7 891.49,-1426.7 891.49,-1463.3"/> | |
<text text-anchor="middle" x="797" y="-1451.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.rpushCommand</text> | |
<text text-anchor="end" x="883.66" y="-1441.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="883.66" y="-1432.2" font-family="Times,serif" font-size="8.00">of 203 (5.2%)</text> | |
</g> | |
<!-- N2->N61 --> | |
<g id="edge20" class="edge"><title>N2->N61</title> | |
<path fill="none" stroke="black" d="M1158.29,-1531.64C1093.41,-1516.52 996.962,-1493.97 913,-1474 901.742,-1471.32 889.873,-1468.48 878.198,-1465.67"/> | |
<polygon fill="black" stroke="black" points="878.994,-1462.26 868.453,-1463.33 877.356,-1469.07 878.994,-1462.26"/> | |
<text text-anchor="middle" x="1072.5" y="-1495.4" font-family="Times,serif" font-size="14.00">203</text> | |
</g> | |
<!-- N65 --> | |
<g id="node66" class="node"><title>N65</title> | |
<polygon fill="none" stroke="black" points="657.323,-1463.3 472.677,-1463.3 472.677,-1426.7 657.323,-1426.7 657.323,-1463.3"/> | |
<text text-anchor="middle" x="565" y="-1451.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.hsetCommand</text> | |
<text text-anchor="end" x="649.215" y="-1441.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="649.215" y="-1432.2" font-family="Times,serif" font-size="8.00">of 190 (4.9%)</text> | |
</g> | |
<!-- N2->N65 --> | |
<g id="edge62" class="edge"><title>N2->N65</title> | |
<path fill="none" stroke="black" d="M1149.89,-1539.48C1043.58,-1526.84 853.962,-1502.74 693,-1474 678.899,-1471.48 663.991,-1468.51 649.525,-1465.46"/> | |
<polygon fill="black" stroke="black" points="650.107,-1462 639.597,-1463.34 648.645,-1468.85 650.107,-1462"/> | |
<text text-anchor="middle" x="925.5" y="-1495.4" font-family="Times,serif" font-size="14.00">190</text> | |
</g> | |
<!-- N67 --> | |
<g id="node68" class="node"><title>N67</title> | |
<polygon fill="none" stroke="black" points="1109.15,-1463.3 922.85,-1463.3 922.85,-1426.7 1109.15,-1426.7 1109.15,-1463.3"/> | |
<text text-anchor="middle" x="1016" y="-1451.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.zremCommand</text> | |
<text text-anchor="end" x="1101.77" y="-1441.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1101.77" y="-1432.2" font-family="Times,serif" font-size="8.00">of 189 (4.9%)</text> | |
</g> | |
<!-- N2->N67 --> | |
<g id="edge38" class="edge"><title>N2->N67</title> | |
<path fill="none" stroke="black" d="M1196.19,-1531.53C1159.13,-1513.94 1101.89,-1486.77 1061.9,-1467.78"/> | |
<polygon fill="black" stroke="black" points="1063.16,-1464.51 1052.63,-1463.39 1060.16,-1470.84 1063.16,-1464.51"/> | |
<text text-anchor="middle" x="1161.5" y="-1495.4" font-family="Times,serif" font-size="14.00">189</text> | |
</g> | |
<!-- N69 --> | |
<g id="node70" class="node"><title>N69</title> | |
<polygon fill="none" stroke="black" points="1330.15,-1463.3 1135.85,-1463.3 1135.85,-1426.7 1330.15,-1426.7 1330.15,-1463.3"/> | |
<text text-anchor="middle" x="1233" y="-1451.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.zincrbyCommand</text> | |
<text text-anchor="end" x="1322.77" y="-1441.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1322.77" y="-1432.2" font-family="Times,serif" font-size="8.00">of 186 (4.8%)</text> | |
</g> | |
<!-- N2->N69 --> | |
<g id="edge90" class="edge"><title>N2->N69</title> | |
<path fill="none" stroke="black" d="M1233,-1531.53C1233,-1515.69 1233,-1492.09 1233,-1473.69"/> | |
<polygon fill="black" stroke="black" points="1236.5,-1473.56 1233,-1463.56 1229.5,-1473.56 1236.5,-1473.56"/> | |
<text text-anchor="middle" x="1243.5" y="-1495.4" font-family="Times,serif" font-size="14.00">186</text> | |
</g> | |
<!-- N71 --> | |
<g id="node72" class="node"><title>N71</title> | |
<polygon fill="none" stroke="black" points="1534.98,-1463.3 1349.02,-1463.3 1349.02,-1426.7 1534.98,-1426.7 1534.98,-1463.3"/> | |
<text text-anchor="middle" x="1442" y="-1451.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.zaddCommand</text> | |
<text text-anchor="end" x="1527.32" y="-1441.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1527.32" y="-1432.2" font-family="Times,serif" font-size="8.00">of 185 (4.8%)</text> | |
</g> | |
<!-- N2->N71 --> | |
<g id="edge31" class="edge"><title>N2->N71</title> | |
<path fill="none" stroke="black" d="M1268.45,-1531.53C1303.99,-1514.01 1358.81,-1487 1397.31,-1468.03"/> | |
<polygon fill="black" stroke="black" points="1399.3,-1470.95 1406.72,-1463.39 1396.2,-1464.67 1399.3,-1470.95"/> | |
<text text-anchor="middle" x="1354.5" y="-1495.4" font-family="Times,serif" font-size="14.00">185</text> | |
</g> | |
<!-- N74 --> | |
<g id="node75" class="node"><title>N74</title> | |
<polygon fill="none" stroke="black" points="184.487,-1463.3 -0.487012,-1463.3 -0.487012,-1426.7 184.487,-1426.7 184.487,-1463.3"/> | |
<text text-anchor="middle" x="92" y="-1451.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.hdelCommand</text> | |
<text text-anchor="end" x="176.658" y="-1441.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="176.658" y="-1432.2" font-family="Times,serif" font-size="8.00">of 182 (4.7%)</text> | |
</g> | |
<!-- N2->N74 --> | |
<g id="edge44" class="edge"><title>N2->N74</title> | |
<path fill="none" stroke="black" d="M1149.59,-1548.9C972.5,-1547.38 546.451,-1536.87 196,-1474 184.066,-1471.86 171.505,-1469.01 159.4,-1465.94"/> | |
<polygon fill="black" stroke="black" points="159.923,-1462.46 149.364,-1463.32 158.158,-1469.23 159.923,-1462.46"/> | |
<text text-anchor="middle" x="432.5" y="-1495.4" font-family="Times,serif" font-size="14.00">182</text> | |
</g> | |
<!-- N76 --> | |
<g id="node77" class="node"><title>N76</title> | |
<polygon fill="none" stroke="black" points="400.485,-1463.3 205.515,-1463.3 205.515,-1426.7 400.485,-1426.7 400.485,-1463.3"/> | |
<text text-anchor="middle" x="303" y="-1451.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.hincrbyCommand</text> | |
<text text-anchor="end" x="392.99" y="-1441.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="392.99" y="-1432.2" font-family="Times,serif" font-size="8.00">of 180 (4.6%)</text> | |
</g> | |
<!-- N2->N76 --> | |
<g id="edge86" class="edge"><title>N2->N76</title> | |
<path fill="none" stroke="black" d="M1149.64,-1543.32C1008.19,-1533.12 712.326,-1509.44 464,-1474 445.464,-1471.35 425.785,-1468.21 406.785,-1465"/> | |
<polygon fill="black" stroke="black" points="407.366,-1461.55 396.92,-1463.32 406.19,-1468.45 407.366,-1461.55"/> | |
<text text-anchor="middle" x="770.5" y="-1495.4" font-family="Times,serif" font-size="14.00">180</text> | |
</g> | |
<!-- N3 --> | |
<g id="node4" class="node"><title>N3</title> | |
<polygon fill="none" stroke="black" points="1173.32,-839.301 1036.68,-839.301 1036.68,-802.699 1173.32,-802.699 1173.32,-839.301"/> | |
<text text-anchor="middle" x="1105" y="-827.4" font-family="Times,serif" font-size="8.00">github.com/boltdb/bolt.(*DB).Update</text> | |
<text text-anchor="end" x="1165.55" y="-817.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1165.55" y="-808.2" font-family="Times,serif" font-size="8.00">of 1594 (41.1%)</text> | |
</g> | |
<!-- N7 --> | |
<g id="node8" class="node"><title>N7</title> | |
<polygon fill="none" stroke="black" points="1173.5,-747.301 1036.5,-747.301 1036.5,-710.699 1173.5,-710.699 1173.5,-747.301"/> | |
<text text-anchor="middle" x="1105" y="-735.4" font-family="Times,serif" font-size="8.00">github.com/boltdb/bolt.(*Tx).Commit</text> | |
<text text-anchor="end" x="1166" y="-725.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1166" y="-716.2" font-family="Times,serif" font-size="8.00">of 1448 (37.4%)</text> | |
</g> | |
<!-- N3->N7 --> | |
<g id="edge48" class="edge"><title>N3->N7</title> | |
<path fill="none" stroke="black" stroke-width="2" d="M1105,-802.647C1105,-789.905 1105,-772.334 1105,-757.665"/> | |
<polygon fill="black" stroke="black" points="1108.5,-757.607 1105,-747.607 1101.5,-757.607 1108.5,-757.607"/> | |
<text text-anchor="middle" x="1119" y="-769.4" font-family="Times,serif" font-size="14.00">1448</text> | |
</g> | |
<!-- N4 --> | |
<g id="node5" class="node"><title>N4</title> | |
<polygon fill="none" stroke="black" points="1193.49,-1168.3 1016.51,-1168.3 1016.51,-1131.7 1193.49,-1131.7 1193.49,-1168.3"/> | |
<text text-anchor="middle" x="1105" y="-1156.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/ledis.(*tx).Commit</text> | |
<text text-anchor="end" x="1186" y="-1146.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1186" y="-1137.2" font-family="Times,serif" font-size="8.00">of 1594 (41.1%)</text> | |
</g> | |
<!-- N6 --> | |
<g id="node7" class="node"><title>N6</title> | |
<polygon fill="none" stroke="black" points="1219.24,-1057.3 990.76,-1057.3 990.76,-1020.7 1219.24,-1020.7 1219.24,-1057.3"/> | |
<text text-anchor="middle" x="1105" y="-1045.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/store/driver.(*WriteBatch).Commit</text> | |
<text text-anchor="end" x="1211.83" y="-1035.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1211.83" y="-1026.2" font-family="Times,serif" font-size="8.00">of 1594 (41.1%)</text> | |
</g> | |
<!-- N4->N6 --> | |
<g id="edge60" class="edge"><title>N4->N6</title> | |
<path fill="none" stroke="black" stroke-width="2" d="M1105,-1131.49C1105,-1114.25 1105,-1087.65 1105,-1067.57"/> | |
<polygon fill="black" stroke="black" points="1108.5,-1067.47 1105,-1057.47 1101.5,-1067.47 1108.5,-1067.47"/> | |
<text text-anchor="middle" x="1119" y="-1093.4" font-family="Times,serif" font-size="14.00">1594</text> | |
</g> | |
<!-- N5 --> | |
<g id="node6" class="node"><title>N5</title> | |
<polygon fill="none" stroke="black" points="1209.32,-951.301 1000.68,-951.301 1000.68,-914.699 1209.32,-914.699 1209.32,-951.301"/> | |
<text text-anchor="middle" x="1105" y="-939.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/store/boltdb.(*DB).BatchPut</text> | |
<text text-anchor="end" x="1201.55" y="-929.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1201.55" y="-920.2" font-family="Times,serif" font-size="8.00">of 1594 (41.1%)</text> | |
</g> | |
<!-- N5->N3 --> | |
<g id="edge80" class="edge"><title>N5->N3</title> | |
<path fill="none" stroke="black" stroke-width="2" d="M1105,-914.327C1105,-896.927 1105,-870.089 1105,-849.825"/> | |
<polygon fill="black" stroke="black" points="1108.5,-849.63 1105,-839.63 1101.5,-849.63 1108.5,-849.63"/> | |
<text text-anchor="middle" x="1119" y="-871.4" font-family="Times,serif" font-size="14.00">1594</text> | |
</g> | |
<!-- N6->N5 --> | |
<g id="edge32" class="edge"><title>N6->N5</title> | |
<path fill="none" stroke="black" stroke-width="2" d="M1105,-1020.36C1105,-1004.27 1105,-980.253 1105,-961.625"/> | |
<polygon fill="black" stroke="black" points="1108.5,-961.382 1105,-951.382 1101.5,-961.382 1108.5,-961.382"/> | |
<text text-anchor="middle" x="1119" y="-973.4" font-family="Times,serif" font-size="14.00">1594</text> | |
</g> | |
<!-- N9 --> | |
<g id="node10" class="node"><title>N9</title> | |
<polygon fill="none" stroke="black" points="1169.16,-655.301 1040.84,-655.301 1040.84,-618.699 1169.16,-618.699 1169.16,-655.301"/> | |
<text text-anchor="middle" x="1105" y="-643.4" font-family="Times,serif" font-size="8.00">github.com/boltdb/bolt.(*Tx).write</text> | |
<text text-anchor="end" x="1161.1" y="-633.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1161.1" y="-624.2" font-family="Times,serif" font-size="8.00">of 960 (24.8%)</text> | |
</g> | |
<!-- N7->N9 --> | |
<g id="edge34" class="edge"><title>N7->N9</title> | |
<path fill="none" stroke="black" stroke-width="1.48683" d="M1105,-710.647C1105,-697.905 1105,-680.334 1105,-665.665"/> | |
<polygon fill="black" stroke="black" points="1108.5,-665.607 1105,-655.607 1101.5,-665.607 1108.5,-665.607"/> | |
<text text-anchor="middle" x="1115.5" y="-677.4" font-family="Times,serif" font-size="14.00">960</text> | |
</g> | |
<!-- N42 --> | |
<g id="node43" class="node"><title>N42</title> | |
<polygon fill="none" stroke="black" points="1022.98,-655.301 879.016,-655.301 879.016,-618.699 1022.98,-618.699 1022.98,-655.301"/> | |
<text text-anchor="middle" x="951" y="-643.4" font-family="Times,serif" font-size="8.00">github.com/boltdb/bolt.(*Tx).writeMeta</text> | |
<text text-anchor="end" x="1015.32" y="-633.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1015.32" y="-624.2" font-family="Times,serif" font-size="8.00">of 245 (6.3%)</text> | |
</g> | |
<!-- N7->N42 --> | |
<g id="edge26" class="edge"><title>N7->N42</title> | |
<path fill="none" stroke="black" d="M1075.31,-710.647C1050.89,-696.375 1016.1,-676.044 989.531,-660.518"/> | |
<polygon fill="black" stroke="black" points="991.264,-657.477 980.864,-655.453 987.732,-663.52 991.264,-657.477"/> | |
<text text-anchor="middle" x="1052.5" y="-677.4" font-family="Times,serif" font-size="14.00">245</text> | |
</g> | |
<!-- N8 --> | |
<g id="node9" class="node"><title>N8</title> | |
<polygon fill="none" stroke="black" points="1934.34,-265.42 1691.66,-265.42 1691.66,-132.58 1934.34,-132.58 1934.34,-265.42"/> | |
<text text-anchor="middle" x="1813" y="-226.76" font-family="Times,serif" font-size="34.70">syscall.Syscall</text> | |
<text text-anchor="end" x="1926.56" y="-185.12" font-family="Times,serif" font-size="34.70">1107 (28.6%)</text> | |
<text text-anchor="end" x="1926.56" y="-143.48" font-family="Times,serif" font-size="34.70">of 1108 (28.6%)</text> | |
</g> | |
<!-- N12 --> | |
<g id="node13" class="node"><title>N12</title> | |
<polygon fill="none" stroke="black" points="1145.26,-543.301 1064.74,-543.301 1064.74,-506.699 1145.26,-506.699 1145.26,-543.301"/> | |
<text text-anchor="middle" x="1105" y="-531.4" font-family="Times,serif" font-size="8.00">os.*File.WriteAt·fm</text> | |
<text text-anchor="end" x="1137.17" y="-521.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1137.17" y="-512.2" font-family="Times,serif" font-size="8.00">of 671 (17.3%)</text> | |
</g> | |
<!-- N9->N12 --> | |
<g id="edge53" class="edge"><title>N9->N12</title> | |
<path fill="none" stroke="black" d="M1105,-618.327C1105,-600.927 1105,-574.089 1105,-553.825"/> | |
<polygon fill="black" stroke="black" points="1108.5,-553.63 1105,-543.63 1101.5,-553.63 1108.5,-553.63"/> | |
<text text-anchor="middle" x="1115.5" y="-575.4" font-family="Times,serif" font-size="14.00">605</text> | |
</g> | |
<!-- N25 --> | |
<g id="node26" class="node"><title>N25</title> | |
<polygon fill="none" stroke="black" points="1285.16,-543.301 1162.84,-543.301 1162.84,-506.699 1285.16,-506.699 1285.16,-543.301"/> | |
<text text-anchor="middle" x="1224" y="-531.4" font-family="Times,serif" font-size="8.00">github.com/boltdb/bolt.fdatasync</text> | |
<text text-anchor="end" x="1277.1" y="-521.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1277.1" y="-512.2" font-family="Times,serif" font-size="8.00">of 385 (9.9%)</text> | |
</g> | |
<!-- N9->N25 --> | |
<g id="edge75" class="edge"><title>N9->N25</title> | |
<path fill="none" stroke="black" d="M1154.26,-618.523C1164.16,-613.546 1173.98,-607.411 1182,-600 1195.97,-587.088 1206.52,-568.439 1213.54,-553.093"/> | |
<polygon fill="black" stroke="black" points="1216.9,-554.147 1217.66,-543.579 1210.48,-551.37 1216.9,-554.147"/> | |
<text text-anchor="middle" x="1219.24" y="-575.4" font-family="Times,serif" font-size="14.00">211</text> | |
</g> | |
<!-- N10 --> | |
<g id="node11" class="node"><title>N10</title> | |
<polygon fill="none" stroke="black" points="1142.09,-451.301 1067.91,-451.301 1067.91,-414.699 1142.09,-414.699 1142.09,-451.301"/> | |
<text text-anchor="middle" x="1105" y="-439.4" font-family="Times,serif" font-size="8.00">os.(*File).WriteAt</text> | |
<text text-anchor="end" x="1134.39" y="-429.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1134.39" y="-420.2" font-family="Times,serif" font-size="8.00">of 671 (17.3%)</text> | |
</g> | |
<!-- N11 --> | |
<g id="node12" class="node"><title>N11</title> | |
<polygon fill="none" stroke="black" points="1141.99,-359.681 1068.01,-359.681 1068.01,-320.319 1141.99,-320.319 1141.99,-359.681"/> | |
<text text-anchor="middle" x="1105" y="-347.04" font-family="Times,serif" font-size="8.80">os.(*File).pwrite</text> | |
<text text-anchor="end" x="1134.33" y="-336.48" font-family="Times,serif" font-size="8.80">1 (0.0%)</text> | |
<text text-anchor="end" x="1134.33" y="-325.92" font-family="Times,serif" font-size="8.80">of 671 (17.3%)</text> | |
</g> | |
<!-- N10->N11 --> | |
<g id="edge74" class="edge"><title>N10->N11</title> | |
<path fill="none" stroke="black" stroke-width="1.03924" d="M1105,-414.454C1105,-401.82 1105,-384.491 1105,-369.837"/> | |
<polygon fill="black" stroke="black" points="1108.5,-369.745 1105,-359.745 1101.5,-369.745 1108.5,-369.745"/> | |
<text text-anchor="middle" x="1115.5" y="-381.4" font-family="Times,serif" font-size="14.00">671</text> | |
</g> | |
<!-- N13 --> | |
<g id="node14" class="node"><title>N13</title> | |
<polygon fill="none" stroke="black" points="1136.99,-217.301 1073.01,-217.301 1073.01,-180.699 1136.99,-180.699 1136.99,-217.301"/> | |
<text text-anchor="middle" x="1105" y="-205.4" font-family="Times,serif" font-size="8.00">syscall.Pwrite</text> | |
<text text-anchor="end" x="1129.33" y="-195.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1129.33" y="-186.2" font-family="Times,serif" font-size="8.00">of 670 (17.3%)</text> | |
</g> | |
<!-- N11->N13 --> | |
<g id="edge27" class="edge"><title>N11->N13</title> | |
<path fill="none" stroke="black" stroke-width="1.03769" d="M1105,-320.254C1105,-296.441 1105,-255.15 1105,-227.7"/> | |
<polygon fill="black" stroke="black" points="1108.5,-227.574 1105,-217.574 1101.5,-227.574 1108.5,-227.574"/> | |
<text text-anchor="middle" x="1115.5" y="-287.4" font-family="Times,serif" font-size="14.00">670</text> | |
</g> | |
<!-- N12->N10 --> | |
<g id="edge30" class="edge"><title>N12->N10</title> | |
<path fill="none" stroke="black" stroke-width="1.03924" d="M1105,-506.647C1105,-493.905 1105,-476.334 1105,-461.665"/> | |
<polygon fill="black" stroke="black" points="1108.5,-461.607 1105,-451.607 1101.5,-461.607 1108.5,-461.607"/> | |
<text text-anchor="middle" x="1115.5" y="-473.4" font-family="Times,serif" font-size="14.00">671</text> | |
</g> | |
<!-- N14 --> | |
<g id="node15" class="node"><title>N14</title> | |
<polygon fill="none" stroke="black" points="1204.38,-77.6201 1005.62,-77.6201 1005.62,-0.379906 1204.38,-0.379906 1204.38,-77.6201"/> | |
<text text-anchor="middle" x="1105" y="-44.76" font-family="Times,serif" font-size="28.80">syscall.Syscall6</text> | |
<text text-anchor="end" x="1196.59" y="-10.2" font-family="Times,serif" font-size="28.80">670 (17.3%)</text> | |
</g> | |
<!-- N13->N14 --> | |
<g id="edge8" class="edge"><title>N13->N14</title> | |
<path fill="none" stroke="black" stroke-width="1.03769" d="M1105,-180.488C1105,-158.326 1105,-119.271 1105,-87.9556"/> | |
<polygon fill="black" stroke="black" points="1108.5,-87.6677 1105,-77.6677 1101.5,-87.6677 1108.5,-87.6677"/> | |
<text text-anchor="middle" x="1115.5" y="-99.4" font-family="Times,serif" font-size="14.00">670</text> | |
</g> | |
<!-- N29 --> | |
<g id="node30" class="node"><title>N29</title> | |
<polygon fill="none" stroke="black" points="2501.14,-1463.3 2272.86,-1463.3 2272.86,-1426.7 2501.14,-1426.7 2501.14,-1463.3"/> | |
<text text-anchor="middle" x="2387" y="-1451.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.(*respClient).handleRequest</text> | |
<text text-anchor="end" x="2493.76" y="-1441.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2493.76" y="-1432.2" font-family="Times,serif" font-size="8.00">of 346 (8.9%)</text> | |
</g> | |
<!-- N15->N29 --> | |
<g id="edge52" class="edge"><title>N15->N29</title> | |
<path fill="none" stroke="black" d="M2184.12,-1531.64C2226.09,-1513.93 2291.3,-1486.4 2336.41,-1467.36"/> | |
<polygon fill="black" stroke="black" points="2337.86,-1470.54 2345.72,-1463.43 2335.14,-1464.09 2337.86,-1470.54"/> | |
<text text-anchor="middle" x="2282.5" y="-1495.4" font-family="Times,serif" font-size="14.00">346</text> | |
</g> | |
<!-- N32 --> | |
<g id="node33" class="node"><title>N32</title> | |
<polygon fill="none" stroke="black" points="2253.47,-1463.3 2032.53,-1463.3 2032.53,-1426.7 2253.47,-1426.7 2253.47,-1463.3"/> | |
<text text-anchor="middle" x="2143" y="-1451.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.(*respClient).readRequest</text> | |
<text text-anchor="end" x="2245.98" y="-1441.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2245.98" y="-1432.2" font-family="Times,serif" font-size="8.00">of 284 (7.3%)</text> | |
</g> | |
<!-- N15->N32 --> | |
<g id="edge67" class="edge"><title>N15->N32</title> | |
<path fill="none" stroke="black" d="M2143,-1531.53C2143,-1515.69 2143,-1492.09 2143,-1473.69"/> | |
<polygon fill="black" stroke="black" points="2146.5,-1473.56 2143,-1463.56 2139.5,-1473.56 2146.5,-1473.56"/> | |
<text text-anchor="middle" x="2153.5" y="-1495.4" font-family="Times,serif" font-size="14.00">284</text> | |
</g> | |
<!-- N16 --> | |
<g id="node17" class="node"><title>N16</title> | |
<polygon fill="none" stroke="black" points="3426.99,-1168.3 3363.01,-1168.3 3363.01,-1131.7 3426.99,-1131.7 3426.99,-1168.3"/> | |
<text text-anchor="middle" x="3395" y="-1156.4" font-family="Times,serif" font-size="8.00">System</text> | |
<text text-anchor="end" x="3419.33" y="-1146.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="3419.33" y="-1137.2" font-family="Times,serif" font-size="8.00">of 607 (15.7%)</text> | |
</g> | |
<!-- N20 --> | |
<g id="node21" class="node"><title>N20</title> | |
<polygon fill="none" stroke="black" points="2955.41,-1072.32 2618.59,-1072.32 2618.59,-1005.68 2955.41,-1005.68 2955.41,-1072.32"/> | |
<text text-anchor="middle" x="2787" y="-1043.86" font-family="Times,serif" font-size="24.30">runtime.mach_semaphore_signal</text> | |
<text text-anchor="end" x="2947.94" y="-1014.7" font-family="Times,serif" font-size="24.30">414 (10.7%)</text> | |
</g> | |
<!-- N16->N20 --> | |
<g id="edge40" class="edge"><title>N16->N20</title> | |
<path fill="none" stroke="black" d="M3365.68,-1131.55C3361.51,-1129.48 3357.21,-1127.56 3353,-1126 3316.58,-1112.53 3220.42,-1095.62 3182,-1090 3089.33,-1076.46 3062.66,-1084.05 2965.53,-1072"/> | |
<polygon fill="black" stroke="black" points="2965.95,-1068.52 2955.58,-1070.73 2965.06,-1075.47 2965.95,-1068.52"/> | |
<text text-anchor="middle" x="3290.5" y="-1093.4" font-family="Times,serif" font-size="14.00">128</text> | |
</g> | |
<!-- N31 --> | |
<g id="node32" class="node"><title>N31</title> | |
<polygon fill="none" stroke="black" points="3549.48,-1069.06 3402.52,-1069.06 3402.52,-1008.94 3549.48,-1008.94 3549.48,-1069.06"/> | |
<text text-anchor="middle" x="3476" y="-1043.38" font-family="Times,serif" font-size="21.90">runtime.kevent</text> | |
<text text-anchor="end" x="3541.98" y="-1017.1" font-family="Times,serif" font-size="21.90">298 (7.7%)</text> | |
</g> | |
<!-- N16->N31 --> | |
<g id="edge87" class="edge"><title>N16->N31</title> | |
<path fill="none" stroke="black" d="M3408.01,-1131.49C3418.8,-1116.98 3434.5,-1095.85 3448.09,-1077.55"/> | |
<polygon fill="black" stroke="black" points="3451.01,-1079.49 3454.17,-1069.38 3445.39,-1075.32 3451.01,-1079.49"/> | |
<text text-anchor="middle" x="3447.5" y="-1093.4" font-family="Times,serif" font-size="14.00">292</text> | |
</g> | |
<!-- N41 --> | |
<g id="node42" class="node"><title>N41</title> | |
<polygon fill="none" stroke="black" points="3384.16,-1068.4 3243.84,-1068.4 3243.84,-1009.6 3384.16,-1009.6 3384.16,-1068.4"/> | |
<text text-anchor="middle" x="3314" y="-1043.2" font-family="Times,serif" font-size="21.00">runtime.usleep</text> | |
<text text-anchor="end" x="3376.11" y="-1018" font-family="Times,serif" font-size="21.00">263 (6.8%)</text> | |
</g> | |
<!-- N16->N41 --> | |
<g id="edge46" class="edge"><title>N16->N41</title> | |
<path fill="none" stroke="black" d="M3393.63,-1131.5C3391.95,-1119.06 3388.24,-1102.42 3380,-1090 3376.51,-1084.73 3372.27,-1079.8 3367.64,-1075.24"/> | |
<polygon fill="black" stroke="black" points="3369.85,-1072.53 3360.1,-1068.39 3365.15,-1077.71 3369.85,-1072.53"/> | |
<text text-anchor="middle" x="3395" y="-1093.4" font-family="Times,serif" font-size="14.00">23</text> | |
</g> | |
<!-- N77 --> | |
<g id="node78" class="node"><title>N77</title> | |
<polygon fill="none" stroke="black" points="3225.42,-1065.38 2974.58,-1065.38 2974.58,-1012.62 3225.42,-1012.62 3225.42,-1065.38"/> | |
<text text-anchor="middle" x="3100" y="-1042.74" font-family="Times,serif" font-size="18.70">runtime.mach_semaphore_wait</text> | |
<text text-anchor="end" x="3217.61" y="-1020.3" font-family="Times,serif" font-size="18.70">179 (4.6%)</text> | |
</g> | |
<!-- N16->N77 --> | |
<g id="edge41" class="edge"><title>N16->N77</title> | |
<path fill="none" stroke="black" d="M3378.03,-1131.53C3361.54,-1114.62 3338.6,-1091.36 3336,-1090 3295.58,-1068.91 3279.65,-1081.26 3235,-1072 3228.34,-1070.62 3221.52,-1069.15 3214.63,-1067.64"/> | |
<polygon fill="black" stroke="black" points="3215.05,-1064.15 3204.53,-1065.39 3213.53,-1070.98 3215.05,-1064.15"/> | |
<text text-anchor="middle" x="3363.5" y="-1093.4" font-family="Times,serif" font-size="14.00">160</text> | |
</g> | |
<!-- N17 --> | |
<g id="node18" class="node"><title>N17</title> | |
<polygon fill="none" stroke="black" points="1915.99,-451.301 1852.01,-451.301 1852.01,-414.699 1915.99,-414.699 1915.99,-451.301"/> | |
<text text-anchor="middle" x="1884" y="-439.4" font-family="Times,serif" font-size="8.00">syscall.Write</text> | |
<text text-anchor="end" x="1908.33" y="-429.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1908.33" y="-420.2" font-family="Times,serif" font-size="8.00">of 487 (12.6%)</text> | |
</g> | |
<!-- N18 --> | |
<g id="node19" class="node"><title>N18</title> | |
<polygon fill="none" stroke="black" points="1907.99,-358.301 1844.01,-358.301 1844.01,-321.699 1907.99,-321.699 1907.99,-358.301"/> | |
<text text-anchor="middle" x="1876" y="-346.4" font-family="Times,serif" font-size="8.00">syscall.write</text> | |
<text text-anchor="end" x="1900.33" y="-336.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1900.33" y="-327.2" font-family="Times,serif" font-size="8.00">of 487 (12.6%)</text> | |
</g> | |
<!-- N17->N18 --> | |
<g id="edge10" class="edge"><title>N17->N18</title> | |
<path fill="none" stroke="black" d="M1882.46,-414.454C1881.32,-401.488 1879.74,-383.575 1878.43,-368.686"/> | |
<polygon fill="black" stroke="black" points="1881.9,-368.147 1877.54,-358.492 1874.93,-368.76 1881.9,-368.147"/> | |
<text text-anchor="middle" x="1891.5" y="-381.4" font-family="Times,serif" font-size="14.00">487</text> | |
</g> | |
<!-- N18->N8 --> | |
<g id="edge36" class="edge"><title>N18->N8</title> | |
<path fill="none" stroke="black" d="M1868.15,-321.677C1862.64,-309.53 1854.87,-292.372 1846.88,-274.761"/> | |
<polygon fill="black" stroke="black" points="1850.02,-273.198 1842.7,-265.535 1843.64,-276.088 1850.02,-273.198"/> | |
<text text-anchor="middle" x="1870.5" y="-287.4" font-family="Times,serif" font-size="14.00">487</text> | |
</g> | |
<!-- N19 --> | |
<g id="node20" class="node"><title>N19</title> | |
<polygon fill="none" stroke="black" points="2559.41,-1173.38 2468.59,-1173.38 2468.59,-1126.62 2559.41,-1126.62 2559.41,-1173.38"/> | |
<text text-anchor="middle" x="2514" y="-1158.64" font-family="Times,serif" font-size="10.80">runtime.mallocgc</text> | |
<text text-anchor="end" x="2551.94" y="-1145.68" font-family="Times,serif" font-size="10.80">12 (0.3%)</text> | |
<text text-anchor="end" x="2551.94" y="-1132.72" font-family="Times,serif" font-size="10.80">of 430 (11.1%)</text> | |
</g> | |
<!-- N21 --> | |
<g id="node22" class="node"><title>N21</title> | |
<polygon fill="none" stroke="black" points="2599.42,-1072.08 2428.58,-1072.08 2428.58,-1005.92 2599.42,-1005.92 2599.42,-1072.08"/> | |
<text text-anchor="middle" x="2514" y="-1043.84" font-family="Times,serif" font-size="24.20">runtime.memclr</text> | |
<text text-anchor="end" x="2591.62" y="-1014.8" font-family="Times,serif" font-size="24.20">405 (10.5%)</text> | |
</g> | |
<!-- N19->N21 --> | |
<g id="edge17" class="edge"><title>N19->N21</title> | |
<path fill="none" stroke="black" d="M2514,-1126.42C2514,-1113.65 2514,-1097.27 2514,-1082.22"/> | |
<polygon fill="black" stroke="black" points="2517.5,-1082.06 2514,-1072.06 2510.5,-1082.06 2517.5,-1082.06"/> | |
<text text-anchor="middle" x="2524.5" y="-1093.4" font-family="Times,serif" font-size="14.00">372</text> | |
</g> | |
<!-- N22 --> | |
<g id="node23" class="node"><title>N22</title> | |
<polygon fill="none" stroke="black" points="1951.42,-1057.3 1870.58,-1057.3 1870.58,-1020.7 1951.42,-1020.7 1951.42,-1057.3"/> | |
<text text-anchor="middle" x="1911" y="-1045.4" font-family="Times,serif" font-size="8.00">bufio.(*Writer).flush</text> | |
<text text-anchor="end" x="1943.95" y="-1035.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1943.95" y="-1026.2" font-family="Times,serif" font-size="8.00">of 403 (10.4%)</text> | |
</g> | |
<!-- N23 --> | |
<g id="node24" class="node"><title>N23</title> | |
<polygon fill="none" stroke="black" points="1938.91,-895.301 1867.09,-895.301 1867.09,-858.699 1938.91,-858.699 1938.91,-895.301"/> | |
<text text-anchor="middle" x="1903" y="-883.4" font-family="Times,serif" font-size="8.00">net.(*conn).Write</text> | |
<text text-anchor="end" x="1931.27" y="-873.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1931.27" y="-864.2" font-family="Times,serif" font-size="8.00">of 403 (10.4%)</text> | |
</g> | |
<!-- N22->N23 --> | |
<g id="edge81" class="edge"><title>N22->N23</title> | |
<path fill="none" stroke="black" d="M1910.13,-1020.57C1908.75,-992.921 1906.04,-938.753 1904.39,-905.727"/> | |
<polygon fill="black" stroke="black" points="1907.87,-905.219 1903.87,-895.406 1900.87,-905.568 1907.87,-905.219"/> | |
<text text-anchor="middle" x="1919.5" y="-973.4" font-family="Times,serif" font-size="14.00">403</text> | |
</g> | |
<!-- N24 --> | |
<g id="node25" class="node"><title>N24</title> | |
<polygon fill="none" stroke="black" points="1925.25,-543.301 1848.75,-543.301 1848.75,-506.699 1925.25,-506.699 1925.25,-543.301"/> | |
<text text-anchor="middle" x="1887" y="-531.4" font-family="Times,serif" font-size="8.00">net.(*netFD).Write</text> | |
<text text-anchor="end" x="1917.5" y="-521.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1917.5" y="-512.2" font-family="Times,serif" font-size="8.00">of 403 (10.4%)</text> | |
</g> | |
<!-- N23->N24 --> | |
<g id="edge49" class="edge"><title>N23->N24</title> | |
<path fill="none" stroke="black" d="M1899.31,-858.387C1895.47,-838.481 1890,-805.062 1890,-776 1890,-776 1890,-776 1890,-636 1890,-607.926 1889.01,-575.836 1888.17,-553.591"/> | |
<polygon fill="black" stroke="black" points="1891.66,-553.378 1887.77,-543.523 1884.67,-553.653 1891.66,-553.378"/> | |
<text text-anchor="middle" x="1900.5" y="-723.4" font-family="Times,serif" font-size="14.00">403</text> | |
</g> | |
<!-- N24->N17 --> | |
<g id="edge22" class="edge"><title>N24->N17</title> | |
<path fill="none" stroke="black" d="M1886.42,-506.647C1886,-493.905 1885.41,-476.334 1884.92,-461.665"/> | |
<polygon fill="black" stroke="black" points="1888.42,-461.485 1884.59,-451.607 1881.42,-461.718 1888.42,-461.485"/> | |
<text text-anchor="middle" x="1896.5" y="-473.4" font-family="Times,serif" font-size="14.00">403</text> | |
</g> | |
<!-- N26 --> | |
<g id="node27" class="node"><title>N26</title> | |
<polygon fill="none" stroke="black" points="1647.17,-451.301 1582.83,-451.301 1582.83,-414.699 1647.17,-414.699 1647.17,-451.301"/> | |
<text text-anchor="middle" x="1615" y="-439.4" font-family="Times,serif" font-size="8.00">os.(*File).Sync</text> | |
<text text-anchor="end" x="1639.44" y="-429.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1639.44" y="-420.2" font-family="Times,serif" font-size="8.00">of 385 (9.9%)</text> | |
</g> | |
<!-- N25->N26 --> | |
<g id="edge64" class="edge"><title>N25->N26</title> | |
<path fill="none" stroke="black" d="M1285.09,-509.938C1365.08,-491.527 1503.23,-459.727 1572.63,-443.753"/> | |
<polygon fill="black" stroke="black" points="1573.79,-447.076 1582.75,-441.422 1572.22,-440.255 1573.79,-447.076"/> | |
<text text-anchor="middle" x="1465.5" y="-473.4" font-family="Times,serif" font-size="14.00">385</text> | |
</g> | |
<!-- N27 --> | |
<g id="node28" class="node"><title>N27</title> | |
<polygon fill="none" stroke="black" points="1749.99,-358.301 1690.01,-358.301 1690.01,-321.699 1749.99,-321.699 1749.99,-358.301"/> | |
<text text-anchor="middle" x="1720" y="-346.4" font-family="Times,serif" font-size="8.00">syscall.Fsync</text> | |
<text text-anchor="end" x="1742.33" y="-336.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1742.33" y="-327.2" font-family="Times,serif" font-size="8.00">of 385 (9.9%)</text> | |
</g> | |
<!-- N26->N27 --> | |
<g id="edge16" class="edge"><title>N26->N27</title> | |
<path fill="none" stroke="black" d="M1635.25,-414.454C1651.37,-400.48 1674.12,-380.763 1691.99,-365.275"/> | |
<polygon fill="black" stroke="black" points="1694.55,-367.686 1699.82,-358.492 1689.97,-362.396 1694.55,-367.686"/> | |
<text text-anchor="middle" x="1687.5" y="-381.4" font-family="Times,serif" font-size="14.00">385</text> | |
</g> | |
<!-- N27->N8 --> | |
<g id="edge61" class="edge"><title>N27->N8</title> | |
<path fill="none" stroke="black" d="M1731.59,-321.677C1739.79,-309.418 1751.41,-292.057 1763.3,-274.276"/> | |
<polygon fill="black" stroke="black" points="1766.5,-275.792 1769.15,-265.535 1760.68,-271.9 1766.5,-275.792"/> | |
<text text-anchor="middle" x="1766.5" y="-287.4" font-family="Times,serif" font-size="14.00">385</text> | |
</g> | |
<!-- N28 --> | |
<g id="node29" class="node"><title>N28</title> | |
<polygon fill="none" stroke="black" points="3343.99,-1168.3 3284.01,-1168.3 3284.01,-1131.7 3343.99,-1131.7 3343.99,-1168.3"/> | |
<text text-anchor="middle" x="3314" y="-1156.4" font-family="Times,serif" font-size="8.00">GC</text> | |
<text text-anchor="end" x="3336.33" y="-1146.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="3336.33" y="-1137.2" font-family="Times,serif" font-size="8.00">of 364 (9.4%)</text> | |
</g> | |
<!-- N28->N20 --> | |
<g id="edge25" class="edge"><title>N28->N20</title> | |
<path fill="none" stroke="black" d="M3283.77,-1142.75C3220.75,-1129.71 3071.32,-1098.81 2952.7,-1074.27"/> | |
<polygon fill="black" stroke="black" points="2953.28,-1070.82 2942.77,-1072.22 2951.86,-1077.67 2953.28,-1070.82"/> | |
<text text-anchor="middle" x="3120" y="-1093.4" font-family="Times,serif" font-size="14.00">13</text> | |
</g> | |
<!-- N28->N21 --> | |
<g id="edge91" class="edge"><title>N28->N21</title> | |
<path fill="none" stroke="black" d="M3283.76,-1145.14C3205.73,-1135.25 2991.16,-1108.47 2812,-1090 2724.98,-1081.03 2699.38,-1089.93 2609.26,-1071.84"/> | |
<polygon fill="black" stroke="black" points="2609.95,-1068.41 2599.45,-1069.82 2608.53,-1075.26 2609.95,-1068.41"/> | |
<text text-anchor="middle" x="2970" y="-1093.4" font-family="Times,serif" font-size="14.00">15</text> | |
</g> | |
<!-- N28->N41 --> | |
<g id="edge39" class="edge"><title>N28->N41</title> | |
<path fill="none" stroke="black" d="M3314,-1131.49C3314,-1117.3 3314,-1096.78 3314,-1078.77"/> | |
<polygon fill="black" stroke="black" points="3317.5,-1078.52 3314,-1068.52 3310.5,-1078.53 3317.5,-1078.52"/> | |
<text text-anchor="middle" x="3324.5" y="-1093.4" font-family="Times,serif" font-size="14.00">239</text> | |
</g> | |
<!-- N28->N77 --> | |
<g id="edge89" class="edge"><title>N28->N77</title> | |
<path fill="none" stroke="black" d="M3284,-1145.14C3253.2,-1140.18 3204.69,-1129.48 3168,-1108 3152.61,-1098.99 3138.22,-1085.66 3126.68,-1073.18"/> | |
<polygon fill="black" stroke="black" points="3129.15,-1070.69 3119.88,-1065.57 3123.93,-1075.36 3129.15,-1070.69"/> | |
<text text-anchor="middle" x="3175" y="-1093.4" font-family="Times,serif" font-size="14.00">19</text> | |
</g> | |
<!-- N30 --> | |
<g id="node31" class="node"><title>N30</title> | |
<polygon fill="none" stroke="black" points="2498.3,-1361.3 2275.7,-1361.3 2275.7,-1324.7 2498.3,-1324.7 2498.3,-1361.3"/> | |
<text text-anchor="middle" x="2387" y="-1349.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.(*requestContext).perform</text> | |
<text text-anchor="end" x="2490.87" y="-1339.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2490.87" y="-1330.2" font-family="Times,serif" font-size="8.00">of 345 (8.9%)</text> | |
</g> | |
<!-- N29->N30 --> | |
<g id="edge24" class="edge"><title>N29->N30</title> | |
<path fill="none" stroke="black" d="M2387,-1426.58C2387,-1411.47 2387,-1389.34 2387,-1371.79"/> | |
<polygon fill="black" stroke="black" points="2390.5,-1371.55 2387,-1361.55 2383.5,-1371.55 2390.5,-1371.55"/> | |
<text text-anchor="middle" x="2397.5" y="-1383.4" font-family="Times,serif" font-size="14.00">345</text> | |
</g> | |
<!-- N56 --> | |
<g id="node57" class="node"><title>N56</title> | |
<polygon fill="none" stroke="black" points="2461.24,-1267.3 2262.76,-1267.3 2262.76,-1230.7 2461.24,-1230.7 2461.24,-1267.3"/> | |
<text text-anchor="middle" x="2362" y="-1255.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.(*respWriter).flush</text> | |
<text text-anchor="end" x="2453.49" y="-1245.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2453.49" y="-1236.2" font-family="Times,serif" font-size="8.00">of 210 (5.4%)</text> | |
</g> | |
<!-- N30->N56 --> | |
<g id="edge78" class="edge"><title>N30->N56</title> | |
<path fill="none" stroke="black" d="M2382.3,-1324.7C2378.69,-1311.42 2373.64,-1292.82 2369.48,-1277.51"/> | |
<polygon fill="black" stroke="black" points="2372.77,-1276.27 2366.77,-1267.54 2366.01,-1278.11 2372.77,-1276.27"/> | |
<text text-anchor="middle" x="2386.5" y="-1291.4" font-family="Times,serif" font-size="14.00">210</text> | |
</g> | |
<!-- N34 --> | |
<g id="node35" class="node"><title>N34</title> | |
<polygon fill="none" stroke="black" points="2257.14,-1361.3 2046.86,-1361.3 2046.86,-1324.7 2257.14,-1324.7 2257.14,-1361.3"/> | |
<text text-anchor="middle" x="2152" y="-1349.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.(*respClient).readLine</text> | |
<text text-anchor="end" x="2249.42" y="-1339.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2249.42" y="-1330.2" font-family="Times,serif" font-size="8.00">of 283 (7.3%)</text> | |
</g> | |
<!-- N32->N34 --> | |
<g id="edge85" class="edge"><title>N32->N34</title> | |
<path fill="none" stroke="black" d="M2144.57,-1426.58C2145.93,-1411.47 2147.92,-1389.34 2149.5,-1371.79"/> | |
<polygon fill="black" stroke="black" points="2153.01,-1371.83 2150.42,-1361.55 2146.04,-1371.2 2153.01,-1371.83"/> | |
<text text-anchor="middle" x="2158.5" y="-1383.4" font-family="Times,serif" font-size="14.00">283</text> | |
</g> | |
<!-- N33 --> | |
<g id="node34" class="node"><title>N33</title> | |
<polygon fill="none" stroke="black" points="2202.15,-1168.3 2101.85,-1168.3 2101.85,-1131.7 2202.15,-1131.7 2202.15,-1168.3"/> | |
<text text-anchor="middle" x="2152" y="-1156.4" font-family="Times,serif" font-size="8.00">bufio.(*Reader).ReadSlice</text> | |
<text text-anchor="end" x="2194.43" y="-1146.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2194.43" y="-1137.2" font-family="Times,serif" font-size="8.00">of 283 (7.3%)</text> | |
</g> | |
<!-- N44 --> | |
<g id="node45" class="node"><title>N44</title> | |
<polygon fill="none" stroke="black" points="1851.49,-1057.3 1774.51,-1057.3 1774.51,-1020.7 1851.49,-1020.7 1851.49,-1057.3"/> | |
<text text-anchor="middle" x="1813" y="-1045.4" font-family="Times,serif" font-size="8.00">bufio.(*Reader).fill</text> | |
<text text-anchor="end" x="1843.66" y="-1035.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1843.66" y="-1026.2" font-family="Times,serif" font-size="8.00">of 238 (6.1%)</text> | |
</g> | |
<!-- N33->N44 --> | |
<g id="edge23" class="edge"><title>N33->N44</title> | |
<path fill="none" stroke="black" d="M2101.78,-1142.88C2030.12,-1133.9 1905.03,-1117.22 1886,-1108 1865.35,-1097.99 1846.53,-1080.13 1833.17,-1065.23"/> | |
<polygon fill="black" stroke="black" points="1835.52,-1062.6 1826.33,-1057.32 1830.22,-1067.17 1835.52,-1062.6"/> | |
<text text-anchor="middle" x="1896.5" y="-1093.4" font-family="Times,serif" font-size="14.00">238</text> | |
</g> | |
<!-- N35 --> | |
<g id="node36" class="node"><title>N35</title> | |
<polygon fill="none" stroke="black" points="2236.48,-1267.3 2067.52,-1267.3 2067.52,-1230.7 2236.48,-1230.7 2236.48,-1267.3"/> | |
<text text-anchor="middle" x="2152" y="-1255.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.ReadLine</text> | |
<text text-anchor="end" x="2228.65" y="-1245.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2228.65" y="-1236.2" font-family="Times,serif" font-size="8.00">of 283 (7.3%)</text> | |
</g> | |
<!-- N34->N35 --> | |
<g id="edge29" class="edge"><title>N34->N35</title> | |
<path fill="none" stroke="black" d="M2152,-1324.7C2152,-1311.54 2152,-1293.18 2152,-1277.95"/> | |
<polygon fill="black" stroke="black" points="2155.5,-1277.54 2152,-1267.54 2148.5,-1277.54 2155.5,-1277.54"/> | |
<text text-anchor="middle" x="2162.5" y="-1291.4" font-family="Times,serif" font-size="14.00">283</text> | |
</g> | |
<!-- N35->N33 --> | |
<g id="edge57" class="edge"><title>N35->N33</title> | |
<path fill="none" stroke="black" d="M2152,-1230.66C2152,-1216.26 2152,-1195.52 2152,-1178.81"/> | |
<polygon fill="black" stroke="black" points="2155.5,-1178.52 2152,-1168.52 2148.5,-1178.52 2155.5,-1178.52"/> | |
<text text-anchor="middle" x="2162.5" y="-1195.4" font-family="Times,serif" font-size="14.00">283</text> | |
</g> | |
<!-- N36 --> | |
<g id="node37" class="node"><title>N36</title> | |
<polygon fill="none" stroke="black" points="2836.47,-1168.3 2737.53,-1168.3 2737.53,-1131.7 2836.47,-1131.7 2836.47,-1168.3"/> | |
<text text-anchor="middle" x="2787" y="-1156.4" font-family="Times,serif" font-size="8.00">runtime.mach_semrelease</text> | |
<text text-anchor="end" x="2828.65" y="-1146.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2828.65" y="-1137.2" font-family="Times,serif" font-size="8.00">of 273 (7.0%)</text> | |
</g> | |
<!-- N36->N20 --> | |
<g id="edge37" class="edge"><title>N36->N20</title> | |
<path fill="none" stroke="black" d="M2787,-1131.49C2787,-1118.33 2787,-1099.73 2787,-1082.73"/> | |
<polygon fill="black" stroke="black" points="2790.5,-1082.42 2787,-1072.42 2783.5,-1082.42 2790.5,-1082.42"/> | |
<text text-anchor="middle" x="2797.5" y="-1093.4" font-family="Times,serif" font-size="14.00">273</text> | |
</g> | |
<!-- N37 --> | |
<g id="node38" class="node"><title>N37</title> | |
<polygon fill="none" stroke="black" points="2827.15,-1361.3 2746.85,-1361.3 2746.85,-1324.7 2827.15,-1324.7 2827.15,-1361.3"/> | |
<text text-anchor="middle" x="2787" y="-1349.4" font-family="Times,serif" font-size="8.00">runtime.notewakeup</text> | |
<text text-anchor="end" x="2819.77" y="-1339.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2819.77" y="-1330.2" font-family="Times,serif" font-size="8.00">of 273 (7.0%)</text> | |
</g> | |
<!-- N38 --> | |
<g id="node39" class="node"><title>N38</title> | |
<polygon fill="none" stroke="black" points="2829.15,-1267.3 2744.85,-1267.3 2744.85,-1230.7 2829.15,-1230.7 2829.15,-1267.3"/> | |
<text text-anchor="middle" x="2787" y="-1255.4" font-family="Times,serif" font-size="8.00">runtime.semawakeup</text> | |
<text text-anchor="end" x="2821.1" y="-1245.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2821.1" y="-1236.2" font-family="Times,serif" font-size="8.00">of 273 (7.0%)</text> | |
</g> | |
<!-- N37->N38 --> | |
<g id="edge5" class="edge"><title>N37->N38</title> | |
<path fill="none" stroke="black" d="M2787,-1324.7C2787,-1311.54 2787,-1293.18 2787,-1277.95"/> | |
<polygon fill="black" stroke="black" points="2790.5,-1277.54 2787,-1267.54 2783.5,-1277.54 2790.5,-1277.54"/> | |
<text text-anchor="middle" x="2797.5" y="-1291.4" font-family="Times,serif" font-size="14.00">273</text> | |
</g> | |
<!-- N38->N36 --> | |
<g id="edge13" class="edge"><title>N38->N36</title> | |
<path fill="none" stroke="black" d="M2787,-1230.66C2787,-1216.26 2787,-1195.52 2787,-1178.81"/> | |
<polygon fill="black" stroke="black" points="2790.5,-1178.52 2787,-1168.52 2783.5,-1178.52 2790.5,-1178.52"/> | |
<text text-anchor="middle" x="2797.5" y="-1195.4" font-family="Times,serif" font-size="14.00">273</text> | |
</g> | |
<!-- N39 --> | |
<g id="node40" class="node"><title>N39</title> | |
<polygon fill="none" stroke="black" points="2816.99,-1463.3 2757.01,-1463.3 2757.01,-1426.7 2816.99,-1426.7 2816.99,-1463.3"/> | |
<text text-anchor="middle" x="2787" y="-1451.4" font-family="Times,serif" font-size="8.00">startm</text> | |
<text text-anchor="end" x="2809.33" y="-1441.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2809.33" y="-1432.2" font-family="Times,serif" font-size="8.00">of 273 (7.0%)</text> | |
</g> | |
<!-- N39->N37 --> | |
<g id="edge71" class="edge"><title>N39->N37</title> | |
<path fill="none" stroke="black" d="M2787,-1426.58C2787,-1411.47 2787,-1389.34 2787,-1371.79"/> | |
<polygon fill="black" stroke="black" points="2790.5,-1371.55 2787,-1361.55 2783.5,-1371.55 2790.5,-1371.55"/> | |
<text text-anchor="middle" x="2797.5" y="-1383.4" font-family="Times,serif" font-size="14.00">273</text> | |
</g> | |
<!-- N40 --> | |
<g id="node41" class="node"><title>N40</title> | |
<polygon fill="none" stroke="black" points="2816.99,-1568.3 2757.01,-1568.3 2757.01,-1531.7 2816.99,-1531.7 2816.99,-1568.3"/> | |
<text text-anchor="middle" x="2787" y="-1556.4" font-family="Times,serif" font-size="8.00">wakep</text> | |
<text text-anchor="end" x="2809.33" y="-1546.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2809.33" y="-1537.2" font-family="Times,serif" font-size="8.00">of 273 (7.0%)</text> | |
</g> | |
<!-- N40->N39 --> | |
<g id="edge92" class="edge"><title>N40->N39</title> | |
<path fill="none" stroke="black" d="M2787,-1531.53C2787,-1515.69 2787,-1492.09 2787,-1473.69"/> | |
<polygon fill="black" stroke="black" points="2790.5,-1473.56 2787,-1463.56 2783.5,-1473.56 2790.5,-1473.56"/> | |
<text text-anchor="middle" x="2797.5" y="-1495.4" font-family="Times,serif" font-size="14.00">273</text> | |
</g> | |
<!-- N42->N12 --> | |
<g id="edge2" class="edge"><title>N42->N12</title> | |
<path fill="none" stroke="black" d="M975.402,-618.57C1001.65,-599.823 1043.51,-569.922 1072.52,-549.198"/> | |
<polygon fill="black" stroke="black" points="1074.61,-552.009 1080.71,-543.348 1070.54,-546.313 1074.61,-552.009"/> | |
<text text-anchor="middle" x="1058" y="-575.4" font-family="Times,serif" font-size="14.00">66</text> | |
</g> | |
<!-- N42->N25 --> | |
<g id="edge21" class="edge"><title>N42->N25</title> | |
<path fill="none" stroke="black" d="M1023.4,-619.773C1026.3,-619.166 1029.18,-618.573 1032,-618 1075.4,-609.195 1092.65,-623.798 1130,-600 1147.47,-588.866 1141.47,-575.708 1157,-562 1162.58,-557.074 1168.95,-552.572 1175.5,-548.546"/> | |
<polygon fill="black" stroke="black" points="1177.57,-551.393 1184.47,-543.356 1174.06,-545.334 1177.57,-551.393"/> | |
<text text-anchor="middle" x="1167.5" y="-575.4" font-family="Times,serif" font-size="14.00">174</text> | |
</g> | |
<!-- N43 --> | |
<g id="node44" class="node"><title>N43</title> | |
<polygon fill="none" stroke="black" points="2548.35,-1269.84 2479.65,-1269.84 2479.65,-1228.16 2548.35,-1228.16 2548.35,-1269.84"/> | |
<text text-anchor="middle" x="2514" y="-1256.52" font-family="Times,serif" font-size="9.40">cnew</text> | |
<text text-anchor="end" x="2540.24" y="-1245.24" font-family="Times,serif" font-size="9.40">3 (0.1%)</text> | |
<text text-anchor="end" x="2540.24" y="-1233.96" font-family="Times,serif" font-size="9.40">of 244 (6.3%)</text> | |
</g> | |
<!-- N43->N19 --> | |
<g id="edge28" class="edge"><title>N43->N19</title> | |
<path fill="none" stroke="black" d="M2514,-1227.9C2514,-1215.13 2514,-1198.3 2514,-1183.65"/> | |
<polygon fill="black" stroke="black" points="2517.5,-1183.45 2514,-1173.45 2510.5,-1183.45 2517.5,-1183.45"/> | |
<text text-anchor="middle" x="2524.5" y="-1195.4" font-family="Times,serif" font-size="14.00">241</text> | |
</g> | |
<!-- N45 --> | |
<g id="node46" class="node"><title>N45</title> | |
<polygon fill="none" stroke="black" points="1848.32,-951.301 1777.68,-951.301 1777.68,-914.699 1848.32,-914.699 1848.32,-951.301"/> | |
<text text-anchor="middle" x="1813" y="-939.4" font-family="Times,serif" font-size="8.00">net.(*conn).Read</text> | |
<text text-anchor="end" x="1840.54" y="-929.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1840.54" y="-920.2" font-family="Times,serif" font-size="8.00">of 238 (6.1%)</text> | |
</g> | |
<!-- N44->N45 --> | |
<g id="edge73" class="edge"><title>N44->N45</title> | |
<path fill="none" stroke="black" d="M1813,-1020.36C1813,-1004.27 1813,-980.253 1813,-961.625"/> | |
<polygon fill="black" stroke="black" points="1816.5,-961.382 1813,-951.382 1809.5,-961.382 1816.5,-961.382"/> | |
<text text-anchor="middle" x="1823.5" y="-973.4" font-family="Times,serif" font-size="14.00">238</text> | |
</g> | |
<!-- N46 --> | |
<g id="node47" class="node"><title>N46</title> | |
<polygon fill="none" stroke="black" points="1850.16,-839.301 1775.84,-839.301 1775.84,-802.699 1850.16,-802.699 1850.16,-839.301"/> | |
<text text-anchor="middle" x="1813" y="-827.4" font-family="Times,serif" font-size="8.00">net.(*netFD).Read</text> | |
<text text-anchor="end" x="1842.77" y="-817.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1842.77" y="-808.2" font-family="Times,serif" font-size="8.00">of 238 (6.1%)</text> | |
</g> | |
<!-- N45->N46 --> | |
<g id="edge58" class="edge"><title>N45->N46</title> | |
<path fill="none" stroke="black" d="M1813,-914.327C1813,-896.927 1813,-870.089 1813,-849.825"/> | |
<polygon fill="black" stroke="black" points="1816.5,-849.63 1813,-839.63 1809.5,-849.63 1816.5,-849.63"/> | |
<text text-anchor="middle" x="1823.5" y="-871.4" font-family="Times,serif" font-size="14.00">238</text> | |
</g> | |
<!-- N47 --> | |
<g id="node48" class="node"><title>N47</title> | |
<polygon fill="none" stroke="black" points="1842.99,-747.301 1783.01,-747.301 1783.01,-710.699 1842.99,-710.699 1842.99,-747.301"/> | |
<text text-anchor="middle" x="1813" y="-735.4" font-family="Times,serif" font-size="8.00">syscall.Read</text> | |
<text text-anchor="end" x="1835.33" y="-725.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1835.33" y="-716.2" font-family="Times,serif" font-size="8.00">of 236 (6.1%)</text> | |
</g> | |
<!-- N46->N47 --> | |
<g id="edge15" class="edge"><title>N46->N47</title> | |
<path fill="none" stroke="black" d="M1813,-802.647C1813,-789.905 1813,-772.334 1813,-757.665"/> | |
<polygon fill="black" stroke="black" points="1816.5,-757.607 1813,-747.607 1809.5,-757.607 1816.5,-757.607"/> | |
<text text-anchor="middle" x="1823.5" y="-769.4" font-family="Times,serif" font-size="14.00">236</text> | |
</g> | |
<!-- N48 --> | |
<g id="node49" class="node"><title>N48</title> | |
<polygon fill="none" stroke="black" points="1842.99,-599.301 1783.01,-599.301 1783.01,-562.699 1842.99,-562.699 1842.99,-599.301"/> | |
<text text-anchor="middle" x="1813" y="-587.4" font-family="Times,serif" font-size="8.00">syscall.read</text> | |
<text text-anchor="end" x="1835.33" y="-577.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1835.33" y="-568.2" font-family="Times,serif" font-size="8.00">of 236 (6.1%)</text> | |
</g> | |
<!-- N47->N48 --> | |
<g id="edge19" class="edge"><title>N47->N48</title> | |
<path fill="none" stroke="black" d="M1813,-710.679C1813,-685.787 1813,-639.633 1813,-609.897"/> | |
<polygon fill="black" stroke="black" points="1816.5,-609.754 1813,-599.754 1809.5,-609.754 1816.5,-609.754"/> | |
<text text-anchor="middle" x="1823.5" y="-677.4" font-family="Times,serif" font-size="14.00">236</text> | |
</g> | |
<!-- N48->N8 --> | |
<g id="edge12" class="edge"><title>N48->N8</title> | |
<path fill="none" stroke="black" d="M1813,-562.657C1813,-542.714 1813,-508.993 1813,-480 1813,-480 1813,-480 1813,-339 1813,-318.562 1813,-296.434 1813,-275.971"/> | |
<polygon fill="black" stroke="black" points="1816.5,-275.758 1813,-265.758 1809.5,-275.758 1816.5,-275.758"/> | |
<text text-anchor="middle" x="1823.5" y="-427.4" font-family="Times,serif" font-size="14.00">236</text> | |
</g> | |
<!-- N49 --> | |
<g id="node50" class="node"><title>N49</title> | |
<polygon fill="none" stroke="black" points="2816.99,-1720.3 2757.01,-1720.3 2757.01,-1683.7 2816.99,-1683.7 2816.99,-1720.3"/> | |
<text text-anchor="middle" x="2787" y="-1708.4" font-family="Times,serif" font-size="8.00">runtime.ready</text> | |
<text text-anchor="end" x="2809.33" y="-1698.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2809.33" y="-1689.2" font-family="Times,serif" font-size="8.00">of 229 (5.9%)</text> | |
</g> | |
<!-- N49->N40 --> | |
<g id="edge11" class="edge"><title>N49->N40</title> | |
<path fill="none" stroke="black" d="M2787,-1683.5C2787,-1657.64 2787,-1609.01 2787,-1578.4"/> | |
<polygon fill="black" stroke="black" points="2790.5,-1578.39 2787,-1568.39 2783.5,-1578.39 2790.5,-1578.39"/> | |
<text text-anchor="middle" x="2797.5" y="-1593.4" font-family="Times,serif" font-size="14.00">229</text> | |
</g> | |
<!-- N50 --> | |
<g id="node51" class="node"><title>N50</title> | |
<polygon fill="none" stroke="black" points="2915.1,-1722.26 2848.9,-1722.26 2848.9,-1681.74 2915.1,-1681.74 2915.1,-1722.26"/> | |
<text text-anchor="middle" x="2882" y="-1709.28" font-family="Times,serif" font-size="9.10">sort.Sort</text> | |
<text text-anchor="end" x="2907.4" y="-1698.36" font-family="Times,serif" font-size="9.10">2 (0.1%)</text> | |
<text text-anchor="end" x="2907.4" y="-1687.44" font-family="Times,serif" font-size="9.10">of 228 (5.9%)</text> | |
</g> | |
<!-- N51 --> | |
<g id="node52" class="node"><title>N51</title> | |
<polygon fill="none" stroke="black" points="2918.29,-1572 2845.71,-1572 2845.71,-1528 2918.29,-1528 2918.29,-1572"/> | |
<text text-anchor="middle" x="2882" y="-1558" font-family="Times,serif" font-size="10.00">sort.quickSort</text> | |
<text text-anchor="end" x="2910.19" y="-1546" font-family="Times,serif" font-size="10.00">6 (0.2%)</text> | |
<text text-anchor="end" x="2910.19" y="-1534" font-family="Times,serif" font-size="10.00">of 226 (5.8%)</text> | |
</g> | |
<!-- N50->N51 --> | |
<g id="edge76" class="edge"><title>N50->N51</title> | |
<path fill="none" stroke="black" d="M2882,-1681.7C2882,-1656.61 2882,-1612.47 2882,-1582.5"/> | |
<polygon fill="black" stroke="black" points="2885.5,-1582.16 2882,-1572.16 2878.5,-1582.16 2885.5,-1582.16"/> | |
<text text-anchor="middle" x="2892.5" y="-1593.4" font-family="Times,serif" font-size="14.00">226</text> | |
</g> | |
<!-- N51->N51 --> | |
<g id="edge82" class="edge"><title>N51->N51</title> | |
<path fill="none" stroke="black" d="M2918.34,-1558.95C2928.35,-1558.51 2936,-1555.53 2936,-1550 2936,-1546.54 2933.01,-1544.08 2928.33,-1542.62"/> | |
<polygon fill="black" stroke="black" points="2928.76,-1539.14 2918.34,-1541.05 2927.68,-1546.06 2928.76,-1539.14"/> | |
<text text-anchor="middle" x="2946.5" y="-1544.4" font-family="Times,serif" font-size="14.00">347</text> | |
</g> | |
<!-- N72 --> | |
<g id="node73" class="node"><title>N72</title> | |
<polygon fill="none" stroke="black" points="2928.36,-1473.82 2835.64,-1473.82 2835.64,-1416.18 2928.36,-1416.18 2928.36,-1473.82"/> | |
<text text-anchor="middle" x="2882" y="-1455.96" font-family="Times,serif" font-size="13.70">sort.doPivot</text> | |
<text text-anchor="end" x="2920.24" y="-1439.52" font-family="Times,serif" font-size="13.70">50 (1.3%)</text> | |
<text text-anchor="end" x="2920.24" y="-1423.08" font-family="Times,serif" font-size="13.70">of 185 (4.8%)</text> | |
</g> | |
<!-- N51->N72 --> | |
<g id="edge1" class="edge"><title>N51->N72</title> | |
<path fill="none" stroke="black" d="M2882,-1527.66C2882,-1515.14 2882,-1498.95 2882,-1484.29"/> | |
<polygon fill="black" stroke="black" points="2885.5,-1483.97 2882,-1473.97 2878.5,-1483.97 2885.5,-1483.97"/> | |
<text text-anchor="middle" x="2892.5" y="-1495.4" font-family="Times,serif" font-size="14.00">185</text> | |
</g> | |
<!-- N53 --> | |
<g id="node54" class="node"><title>N53</title> | |
<polygon fill="none" stroke="black" points="1732.49,-1361.3 1559.51,-1361.3 1559.51,-1324.7 1732.49,-1324.7 1732.49,-1361.3"/> | |
<text text-anchor="middle" x="1646" y="-1349.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/ledis.(*DB).LPop</text> | |
<text text-anchor="end" x="1725" y="-1339.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1725" y="-1330.2" font-family="Times,serif" font-size="8.00">of 217 (5.6%)</text> | |
</g> | |
<!-- N52->N53 --> | |
<g id="edge83" class="edge"><title>N52->N53</title> | |
<path fill="none" stroke="black" d="M1646,-1426.58C1646,-1411.47 1646,-1389.34 1646,-1371.79"/> | |
<polygon fill="black" stroke="black" points="1649.5,-1371.55 1646,-1361.55 1642.5,-1371.55 1649.5,-1371.55"/> | |
<text text-anchor="middle" x="1656.5" y="-1383.4" font-family="Times,serif" font-size="14.00">217</text> | |
</g> | |
<!-- N57 --> | |
<g id="node58" class="node"><title>N57</title> | |
<polygon fill="none" stroke="black" points="2018.57,-1267.3 1803.43,-1267.3 1803.43,-1230.7 2018.57,-1230.7 2018.57,-1267.3"/> | |
<text text-anchor="middle" x="1911" y="-1255.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.(*respWriter).writeBulk</text> | |
<text text-anchor="end" x="2010.71" y="-1245.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2010.71" y="-1236.2" font-family="Times,serif" font-size="8.00">of 207 (5.3%)</text> | |
</g> | |
<!-- N52->N57 --> | |
<g id="edge63" class="edge"><title>N52->N57</title> | |
<path fill="none" stroke="black" d="M1667.21,-1426.59C1686.77,-1410.33 1716.42,-1385.15 1741,-1362 1758.16,-1345.84 1759.28,-1338.33 1778,-1324 1804.65,-1303.6 1837.6,-1285.23 1864.04,-1271.89"/> | |
<polygon fill="black" stroke="black" points="1865.7,-1274.97 1873.09,-1267.39 1862.58,-1268.7 1865.7,-1274.97"/> | |
<text text-anchor="middle" x="1781.5" y="-1337.4" font-family="Times,serif" font-size="14.00">7</text> | |
</g> | |
<!-- N54 --> | |
<g id="node55" class="node"><title>N54</title> | |
<polygon fill="none" stroke="black" points="1731.16,-1267.3 1560.84,-1267.3 1560.84,-1230.7 1731.16,-1230.7 1731.16,-1267.3"/> | |
<text text-anchor="middle" x="1646" y="-1255.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/ledis.(*DB).lpop</text> | |
<text text-anchor="end" x="1723.44" y="-1245.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1723.44" y="-1236.2" font-family="Times,serif" font-size="8.00">of 217 (5.6%)</text> | |
</g> | |
<!-- N53->N54 --> | |
<g id="edge79" class="edge"><title>N53->N54</title> | |
<path fill="none" stroke="black" d="M1646,-1324.7C1646,-1311.54 1646,-1293.18 1646,-1277.95"/> | |
<polygon fill="black" stroke="black" points="1649.5,-1277.54 1646,-1267.54 1642.5,-1277.54 1649.5,-1277.54"/> | |
<text text-anchor="middle" x="1656.5" y="-1291.4" font-family="Times,serif" font-size="14.00">217</text> | |
</g> | |
<!-- N54->N4 --> | |
<g id="edge77" class="edge"><title>N54->N4</title> | |
<path fill="none" stroke="black" d="M1570.57,-1230.7C1517.9,-1218.94 1445.87,-1203.49 1382,-1192 1323.12,-1181.41 1256.83,-1171.52 1203.87,-1164.12"/> | |
<polygon fill="black" stroke="black" points="1204.19,-1160.63 1193.8,-1162.71 1203.22,-1167.56 1204.19,-1160.63"/> | |
<text text-anchor="middle" x="1480.5" y="-1195.4" font-family="Times,serif" font-size="14.00">204</text> | |
</g> | |
<!-- N55 --> | |
<g id="node56" class="node"><title>N55</title> | |
<polygon fill="none" stroke="black" points="2329.09,-1168.3 2244.91,-1168.3 2244.91,-1131.7 2329.09,-1131.7 2329.09,-1168.3"/> | |
<text text-anchor="middle" x="2287" y="-1156.4" font-family="Times,serif" font-size="8.00">bufio.(*Writer).Flush</text> | |
<text text-anchor="end" x="2321.06" y="-1146.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2321.06" y="-1137.2" font-family="Times,serif" font-size="8.00">of 210 (5.4%)</text> | |
</g> | |
<!-- N55->N22 --> | |
<g id="edge14" class="edge"><title>N55->N22</title> | |
<path fill="none" stroke="black" d="M2244.82,-1136.12C2233.82,-1132.79 2221.98,-1129.23 2211,-1126 2123.55,-1100.23 2021.45,-1071.19 1961.74,-1054.3"/> | |
<polygon fill="black" stroke="black" points="1962.39,-1050.85 1951.82,-1051.5 1960.49,-1057.58 1962.39,-1050.85"/> | |
<text text-anchor="middle" x="2156.5" y="-1093.4" font-family="Times,serif" font-size="14.00">210</text> | |
</g> | |
<!-- N56->N55 --> | |
<g id="edge42" class="edge"><title>N56->N55</title> | |
<path fill="none" stroke="black" d="M2348.59,-1230.66C2336.93,-1215.58 2319.88,-1193.53 2306.68,-1176.45"/> | |
<polygon fill="black" stroke="black" points="2309.43,-1174.29 2300.55,-1168.52 2303.89,-1178.57 2309.43,-1174.29"/> | |
<text text-anchor="middle" x="2341.5" y="-1195.4" font-family="Times,serif" font-size="14.00">210</text> | |
</g> | |
<!-- N62 --> | |
<g id="node63" class="node"><title>N62</title> | |
<polygon fill="none" stroke="black" points="1953.17,-1168.3 1868.83,-1168.3 1868.83,-1131.7 1953.17,-1131.7 1953.17,-1168.3"/> | |
<text text-anchor="middle" x="1911" y="-1156.4" font-family="Times,serif" font-size="8.00">bufio.(*Writer).Write</text> | |
<text text-anchor="end" x="1945.12" y="-1146.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1945.12" y="-1137.2" font-family="Times,serif" font-size="8.00">of 202 (5.2%)</text> | |
</g> | |
<!-- N57->N62 --> | |
<g id="edge54" class="edge"><title>N57->N62</title> | |
<path fill="none" stroke="black" d="M1911,-1230.66C1911,-1216.26 1911,-1195.52 1911,-1178.81"/> | |
<polygon fill="black" stroke="black" points="1914.5,-1178.52 1911,-1168.52 1907.5,-1178.52 1914.5,-1178.52"/> | |
<text text-anchor="middle" x="1921.5" y="-1195.4" font-family="Times,serif" font-size="14.00">202</text> | |
</g> | |
<!-- N63 --> | |
<g id="node64" class="node"><title>N63</title> | |
<polygon fill="none" stroke="black" points="2027.89,-1361.3 1794.11,-1361.3 1794.11,-1324.7 2027.89,-1324.7 2027.89,-1361.3"/> | |
<text text-anchor="middle" x="1911" y="-1349.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/server.(*respWriter).writeSliceArray</text> | |
<text text-anchor="end" x="2020.26" y="-1339.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="2020.26" y="-1330.2" font-family="Times,serif" font-size="8.00">of 200 (5.2%)</text> | |
</g> | |
<!-- N58->N63 --> | |
<g id="edge47" class="edge"><title>N58->N63</title> | |
<path fill="none" stroke="black" d="M1863.1,-1426.58C1872.11,-1411.05 1885.43,-1388.08 1895.74,-1370.31"/> | |
<polygon fill="black" stroke="black" points="1898.83,-1371.96 1900.82,-1361.55 1892.77,-1368.45 1898.83,-1371.96"/> | |
<text text-anchor="middle" x="1899.5" y="-1383.4" font-family="Times,serif" font-size="14.00">200</text> | |
</g> | |
<!-- N59 --> | |
<g id="node60" class="node"><title>N59</title> | |
<polygon fill="none" stroke="black" points="762.168,-1361.3 585.832,-1361.3 585.832,-1324.7 762.168,-1324.7 762.168,-1361.3"/> | |
<text text-anchor="middle" x="674" y="-1349.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/ledis.(*DB).RPush</text> | |
<text text-anchor="end" x="754.777" y="-1339.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="754.777" y="-1330.2" font-family="Times,serif" font-size="8.00">of 203 (5.2%)</text> | |
</g> | |
<!-- N60 --> | |
<g id="node61" class="node"><title>N60</title> | |
<polygon fill="none" stroke="black" points="760.494,-1267.3 587.506,-1267.3 587.506,-1230.7 760.494,-1230.7 760.494,-1267.3"/> | |
<text text-anchor="middle" x="674" y="-1255.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/ledis.(*DB).lpush</text> | |
<text text-anchor="end" x="752.996" y="-1245.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="752.996" y="-1236.2" font-family="Times,serif" font-size="8.00">of 203 (5.2%)</text> | |
</g> | |
<!-- N59->N60 --> | |
<g id="edge7" class="edge"><title>N59->N60</title> | |
<path fill="none" stroke="black" d="M674,-1324.7C674,-1311.54 674,-1293.18 674,-1277.95"/> | |
<polygon fill="black" stroke="black" points="677.5,-1277.54 674,-1267.54 670.5,-1277.54 677.5,-1277.54"/> | |
<text text-anchor="middle" x="684.5" y="-1291.4" font-family="Times,serif" font-size="14.00">203</text> | |
</g> | |
<!-- N60->N4 --> | |
<g id="edge4" class="edge"><title>N60->N4</title> | |
<path fill="none" stroke="black" d="M736.591,-1230.62C779.573,-1218.97 838.029,-1203.68 890,-1192 927.785,-1183.51 969.562,-1175.28 1006.16,-1168.45"/> | |
<polygon fill="black" stroke="black" points="1007.15,-1171.83 1016.34,-1166.56 1005.87,-1164.95 1007.15,-1171.83"/> | |
<text text-anchor="middle" x="900.5" y="-1195.4" font-family="Times,serif" font-size="14.00">170</text> | |
</g> | |
<!-- N61->N59 --> | |
<g id="edge68" class="edge"><title>N61->N59</title> | |
<path fill="none" stroke="black" d="M775.575,-1426.58C755.591,-1410.33 725.608,-1385.96 703.392,-1367.9"/> | |
<polygon fill="black" stroke="black" points="705.559,-1365.15 695.592,-1361.55 701.143,-1370.58 705.559,-1365.15"/> | |
<text text-anchor="middle" x="750.5" y="-1383.4" font-family="Times,serif" font-size="14.00">203</text> | |
</g> | |
<!-- N62->N22 --> | |
<g id="edge9" class="edge"><title>N62->N22</title> | |
<path fill="none" stroke="black" d="M1911,-1131.49C1911,-1114.25 1911,-1087.65 1911,-1067.57"/> | |
<polygon fill="black" stroke="black" points="1914.5,-1067.47 1911,-1057.47 1907.5,-1067.47 1914.5,-1067.47"/> | |
<text text-anchor="middle" x="1921.5" y="-1093.4" font-family="Times,serif" font-size="14.00">188</text> | |
</g> | |
<!-- N63->N57 --> | |
<g id="edge50" class="edge"><title>N63->N57</title> | |
<path fill="none" stroke="black" d="M1911,-1324.7C1911,-1311.54 1911,-1293.18 1911,-1277.95"/> | |
<polygon fill="black" stroke="black" points="1914.5,-1277.54 1911,-1267.54 1907.5,-1277.54 1914.5,-1277.54"/> | |
<text text-anchor="middle" x="1921.5" y="-1291.4" font-family="Times,serif" font-size="14.00">200</text> | |
</g> | |
<!-- N64 --> | |
<g id="node65" class="node"><title>N64</title> | |
<polygon fill="none" stroke="black" points="566.993,-1361.3 395.007,-1361.3 395.007,-1324.7 566.993,-1324.7 566.993,-1361.3"/> | |
<text text-anchor="middle" x="481" y="-1349.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/ledis.(*DB).HSet</text> | |
<text text-anchor="end" x="559.328" y="-1339.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="559.328" y="-1330.2" font-family="Times,serif" font-size="8.00">of 190 (4.9%)</text> | |
</g> | |
<!-- N64->N4 --> | |
<g id="edge93" class="edge"><title>N64->N4</title> | |
<path fill="none" stroke="black" d="M487.362,-1324.28C497.651,-1298.41 520.55,-1250.91 557,-1228 629.855,-1182.2 869.092,-1162.79 1006.18,-1155.27"/> | |
<polygon fill="black" stroke="black" points="1006.47,-1158.76 1016.27,-1154.73 1006.1,-1151.77 1006.47,-1158.76"/> | |
<text text-anchor="middle" x="567.5" y="-1243.4" font-family="Times,serif" font-size="14.00">154</text> | |
</g> | |
<!-- N65->N64 --> | |
<g id="edge65" class="edge"><title>N65->N64</title> | |
<path fill="none" stroke="black" d="M550.368,-1426.58C537.08,-1410.76 517.317,-1387.23 502.281,-1369.34"/> | |
<polygon fill="black" stroke="black" points="504.858,-1366.96 495.746,-1361.55 499.498,-1371.46 504.858,-1366.96"/> | |
<text text-anchor="middle" x="536.5" y="-1383.4" font-family="Times,serif" font-size="14.00">190</text> | |
</g> | |
<!-- N66 --> | |
<g id="node67" class="node"><title>N66</title> | |
<polygon fill="none" stroke="black" points="956.99,-1361.3 781.01,-1361.3 781.01,-1324.7 956.99,-1324.7 956.99,-1361.3"/> | |
<text text-anchor="middle" x="869" y="-1349.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/ledis.(*DB).ZRem</text> | |
<text text-anchor="end" x="949.326" y="-1339.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="949.326" y="-1330.2" font-family="Times,serif" font-size="8.00">of 189 (4.9%)</text> | |
</g> | |
<!-- N66->N4 --> | |
<g id="edge84" class="edge"><title>N66->N4</title> | |
<path fill="none" stroke="black" d="M891.503,-1324.57C909.145,-1310.53 933.976,-1289.91 954,-1270 971.435,-1252.67 971.616,-1244.32 990,-1228 1013.16,-1207.44 1042.15,-1188.06 1065.23,-1173.89"/> | |
<polygon fill="black" stroke="black" points="1067.34,-1176.7 1074.08,-1168.53 1063.71,-1170.72 1067.34,-1176.7"/> | |
<text text-anchor="middle" x="1000.5" y="-1243.4" font-family="Times,serif" font-size="14.00">150</text> | |
</g> | |
<!-- N67->N66 --> | |
<g id="edge35" class="edge"><title>N67->N66</title> | |
<path fill="none" stroke="black" d="M990.395,-1426.58C966.197,-1410.12 929.733,-1385.31 903.084,-1367.19"/> | |
<polygon fill="black" stroke="black" points="905.042,-1364.29 894.805,-1361.55 901.105,-1370.07 905.042,-1364.29"/> | |
<text text-anchor="middle" x="957.5" y="-1383.4" font-family="Times,serif" font-size="14.00">189</text> | |
</g> | |
<!-- N68 --> | |
<g id="node69" class="node"><title>N68</title> | |
<polygon fill="none" stroke="black" points="1346.32,-1361.3 1163.68,-1361.3 1163.68,-1324.7 1346.32,-1324.7 1346.32,-1361.3"/> | |
<text text-anchor="middle" x="1255" y="-1349.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/ledis.(*DB).ZIncrBy</text> | |
<text text-anchor="end" x="1338.88" y="-1339.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1338.88" y="-1330.2" font-family="Times,serif" font-size="8.00">of 186 (4.8%)</text> | |
</g> | |
<!-- N68->N4 --> | |
<g id="edge45" class="edge"><title>N68->N4</title> | |
<path fill="none" stroke="black" d="M1248.88,-1324.49C1240.08,-1300.94 1222.23,-1258.49 1198,-1228 1181.53,-1207.27 1158.67,-1188.25 1139.74,-1174.3"/> | |
<polygon fill="black" stroke="black" points="1141.78,-1171.46 1131.63,-1168.45 1137.69,-1177.14 1141.78,-1171.46"/> | |
<text text-anchor="middle" x="1235.5" y="-1243.4" font-family="Times,serif" font-size="14.00">163</text> | |
</g> | |
<!-- N69->N68 --> | |
<g id="edge56" class="edge"><title>N69->N68</title> | |
<path fill="none" stroke="black" d="M1236.83,-1426.58C1240.16,-1411.47 1245.03,-1389.34 1248.89,-1371.79"/> | |
<polygon fill="black" stroke="black" points="1252.41,-1372.07 1251.14,-1361.55 1245.57,-1370.57 1252.41,-1372.07"/> | |
<text text-anchor="middle" x="1257.5" y="-1383.4" font-family="Times,serif" font-size="14.00">186</text> | |
</g> | |
<!-- N70 --> | |
<g id="node71" class="node"><title>N70</title> | |
<polygon fill="none" stroke="black" points="1540.49,-1361.3 1365.51,-1361.3 1365.51,-1324.7 1540.49,-1324.7 1540.49,-1361.3"/> | |
<text text-anchor="middle" x="1453" y="-1349.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/ledis.(*DB).ZAdd</text> | |
<text text-anchor="end" x="1532.66" y="-1339.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1532.66" y="-1330.2" font-family="Times,serif" font-size="8.00">of 185 (4.8%)</text> | |
</g> | |
<!-- N70->N4 --> | |
<g id="edge55" class="edge"><title>N70->N4</title> | |
<path fill="none" stroke="black" d="M1423.35,-1324.64C1374.5,-1296.18 1273.84,-1238.16 1187,-1192 1175.02,-1185.63 1161.92,-1178.96 1149.78,-1172.89"/> | |
<polygon fill="black" stroke="black" points="1151.23,-1169.7 1140.72,-1168.38 1148.11,-1175.96 1151.23,-1169.7"/> | |
<text text-anchor="middle" x="1335.5" y="-1243.4" font-family="Times,serif" font-size="14.00">152</text> | |
</g> | |
<!-- N71->N70 --> | |
<g id="edge59" class="edge"><title>N71->N70</title> | |
<path fill="none" stroke="black" d="M1443.92,-1426.58C1445.58,-1411.47 1448.01,-1389.34 1449.94,-1371.79"/> | |
<polygon fill="black" stroke="black" points="1453.45,-1371.88 1451.07,-1361.55 1446.5,-1371.11 1453.45,-1371.88"/> | |
<text text-anchor="middle" x="1459.5" y="-1383.4" font-family="Times,serif" font-size="14.00">185</text> | |
</g> | |
<!-- N73 --> | |
<g id="node74" class="node"><title>N73</title> | |
<polygon fill="none" stroke="black" points="173.488,-1361.3 0.511673,-1361.3 0.511673,-1324.7 173.488,-1324.7 173.488,-1361.3"/> | |
<text text-anchor="middle" x="87" y="-1349.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/ledis.(*DB).HDel</text> | |
<text text-anchor="end" x="165.992" y="-1339.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="165.992" y="-1330.2" font-family="Times,serif" font-size="8.00">of 182 (4.7%)</text> | |
</g> | |
<!-- N73->N4 --> | |
<g id="edge51" class="edge"><title>N73->N4</title> | |
<path fill="none" stroke="black" d="M127.119,-1324.67C183.5,-1300.74 289.733,-1257.25 383,-1228 447.182,-1207.87 463.549,-1202.43 530,-1192 695.793,-1165.98 891.102,-1156.46 1006.12,-1152.98"/> | |
<polygon fill="black" stroke="black" points="1006.42,-1156.47 1016.31,-1152.68 1006.21,-1149.48 1006.42,-1156.47"/> | |
<text text-anchor="middle" x="393.5" y="-1243.4" font-family="Times,serif" font-size="14.00">153</text> | |
</g> | |
<!-- N74->N73 --> | |
<g id="edge43" class="edge"><title>N74->N73</title> | |
<path fill="none" stroke="black" d="M91.1291,-1426.58C90.3737,-1411.47 89.2669,-1389.34 88.3893,-1371.79"/> | |
<polygon fill="black" stroke="black" points="91.8728,-1371.37 87.8777,-1361.55 84.8816,-1371.72 91.8728,-1371.37"/> | |
<text text-anchor="middle" x="100.5" y="-1383.4" font-family="Times,serif" font-size="14.00">182</text> | |
</g> | |
<!-- N75 --> | |
<g id="node76" class="node"><title>N75</title> | |
<polygon fill="none" stroke="black" points="375.987,-1361.3 192.013,-1361.3 192.013,-1324.7 375.987,-1324.7 375.987,-1361.3"/> | |
<text text-anchor="middle" x="284" y="-1349.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/ledis.(*DB).HIncrBy</text> | |
<text text-anchor="end" x="368.324" y="-1339.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="368.324" y="-1330.2" font-family="Times,serif" font-size="8.00">of 180 (4.6%)</text> | |
</g> | |
<!-- N75->N4 --> | |
<g id="edge6" class="edge"><title>N75->N4</title> | |
<path fill="none" stroke="black" d="M312.188,-1324.63C351.498,-1300.85 425.457,-1257.74 492,-1228 535.889,-1208.38 546.979,-1202.01 594,-1192 735.112,-1161.97 902.405,-1153.53 1006.14,-1151.38"/> | |
<polygon fill="black" stroke="black" points="1006.36,-1154.88 1016.29,-1151.19 1006.23,-1147.88 1006.36,-1154.88"/> | |
<text text-anchor="middle" x="502.5" y="-1243.4" font-family="Times,serif" font-size="14.00">152</text> | |
</g> | |
<!-- N76->N75 --> | |
<g id="edge72" class="edge"><title>N76->N75</title> | |
<path fill="none" stroke="black" d="M299.69,-1426.58C296.82,-1411.47 292.614,-1389.34 289.28,-1371.79"/> | |
<polygon fill="black" stroke="black" points="292.641,-1370.73 287.335,-1361.55 285.764,-1372.03 292.641,-1370.73"/> | |
<text text-anchor="middle" x="305.5" y="-1383.4" font-family="Times,serif" font-size="14.00">180</text> | |
</g> | |
<!-- N78 --> | |
<g id="node79" class="node"><title>N78</title> | |
<polygon fill="none" stroke="black" points="1144.15,-1361.3 975.847,-1361.3 975.847,-1324.7 1144.15,-1324.7 1144.15,-1361.3"/> | |
<text text-anchor="middle" x="1060" y="-1349.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/ledis.(*DB).Incr</text> | |
<text text-anchor="end" x="1136.77" y="-1339.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1136.77" y="-1330.2" font-family="Times,serif" font-size="8.00">of 178 (4.6%)</text> | |
</g> | |
<!-- N80 --> | |
<g id="node81" class="node"><title>N80</title> | |
<polygon fill="none" stroke="black" points="1189.32,-1267.3 1020.68,-1267.3 1020.68,-1230.7 1189.32,-1230.7 1189.32,-1267.3"/> | |
<text text-anchor="middle" x="1105" y="-1255.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/ledis.(*DB).incr</text> | |
<text text-anchor="end" x="1181.55" y="-1245.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="1181.55" y="-1236.2" font-family="Times,serif" font-size="8.00">of 178 (4.6%)</text> | |
</g> | |
<!-- N78->N80 --> | |
<g id="edge69" class="edge"><title>N78->N80</title> | |
<path fill="none" stroke="black" d="M1068.46,-1324.7C1075.08,-1311.16 1084.4,-1292.11 1091.97,-1276.63"/> | |
<polygon fill="black" stroke="black" points="1095.17,-1278.06 1096.42,-1267.54 1088.88,-1274.98 1095.17,-1278.06"/> | |
<text text-anchor="middle" x="1096.5" y="-1291.4" font-family="Times,serif" font-size="14.00">178</text> | |
</g> | |
<!-- N79 --> | |
<g id="node80" class="node"><title>N79</title> | |
<polygon fill="none" stroke="black" points="945.159,-1267.3 778.841,-1267.3 778.841,-1230.7 945.159,-1230.7 945.159,-1267.3"/> | |
<text text-anchor="middle" x="862" y="-1255.4" font-family="Times,serif" font-size="8.00">github.com/siddontang/ledisdb/ledis.(*DB).Set</text> | |
<text text-anchor="end" x="937.439" y="-1245.8" font-family="Times,serif" font-size="8.00">0 (0.0%)</text> | |
<text text-anchor="end" x="937.439" y="-1236.2" font-family="Times,serif" font-size="8.00">of 178 (4.6%)</text> | |
</g> | |
<!-- N79->N4 --> | |
<g id="edge88" class="edge"><title>N79->N4</title> | |
<path fill="none" stroke="black" d="M883.618,-1230.62C899.917,-1218.27 923.277,-1202.15 946,-1192 964.9,-1183.56 985.872,-1176.6 1006.22,-1170.97"/> | |
<polygon fill="black" stroke="black" points="1007.39,-1174.28 1016.15,-1168.32 1005.58,-1167.52 1007.39,-1174.28"/> | |
<text text-anchor="middle" x="956.5" y="-1195.4" font-family="Times,serif" font-size="14.00">152</text> | |
</g> | |
<!-- N80->N4 --> | |
<g id="edge3" class="edge"><title>N80->N4</title> | |
<path fill="none" stroke="black" d="M1105,-1230.66C1105,-1216.26 1105,-1195.52 1105,-1178.81"/> | |
<polygon fill="black" stroke="black" points="1108.5,-1178.52 1105,-1168.52 1101.5,-1178.52 1108.5,-1178.52"/> | |
<text text-anchor="middle" x="1115.5" y="-1195.4" font-family="Times,serif" font-size="14.00">144</text> | |
</g> | |
</g> | |
</g></svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment