Created
August 9, 2016 15:51
-
-
Save steveyen/c53e53ed69ffb92bda6991eac374ceb9 to your computer and use it in GitHub Desktop.
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.38.0 (20140413.2041) | |
| --> | |
| <!-- Title: bleve-query 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 library 1.2.1 | |
| * ====================== | |
| * | |
| * Given an unique existing element with id "viewport" (or when missing, the first g | |
| * element), including the the library into any SVG adds the following capabilities: | |
| * | |
| * - Mouse panning | |
| * - Mouse zooming (using the wheel) | |
| * - Object dragging | |
| * | |
| * You can configure the behaviour of the pan/zoom/drag with the variables | |
| * listed in the CONFIGURATION section of this file. | |
| * | |
| * Known issues: | |
| * | |
| * - Zooming (while panning) on Safari has still some issues | |
| * | |
| * Releases: | |
| * | |
| * 1.2.1, Mon Jul 4 00:33:18 CEST 2011, Andrea Leofreddi | |
| * - Fixed a regression with mouse wheel (now working on Firefox 5) | |
| * - Working with viewBox attribute (#4) | |
| * - Added "use strict;" and fixed resulting warnings (#5) | |
| * - Added configuration variables, dragging is disabled by default (#3) | |
| * | |
| * 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. | |
| */ | |
| "use strict"; | |
| /// CONFIGURATION | |
| /// ====> | |
| var enablePan = 1; // 1 or 0: enable or disable panning (default enabled) | |
| var enableZoom = 1; // 1 or 0: enable or disable zooming (default enabled) | |
| var enableDrag = 0; // 1 or 0: enable or disable dragging (default disabled) | |
| /// <==== | |
| /// END OF CONFIGURATION | |
| var root = document.documentElement; | |
| var state = 'none', svgRoot, stateTarget, stateOrigin, stateTf; | |
| setupHandlers(root); | |
| /** | |
| * Register handlers | |
| */ | |
| function setupHandlers(root){ | |
| setAttributes(root, { | |
| "onmouseup" : "handleMouseUp(evt)", | |
| "onmousedown" : "handleMouseDown(evt)", | |
| "onmousemove" : "handleMouseMove(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 | |
| } | |
| /** | |
| * Retrieves the root element for SVG manipulation. The element is then cached into the svgRoot global variable. | |
| */ | |
| function getRoot(root) { | |
| if(typeof(svgRoot) == "undefined") { | |
| var g = null; | |
| g = root.getElementById("viewport"); | |
| if(g == null) | |
| g = root.getElementsByTagName('g')[0]; | |
| if(g == null) | |
| alert('Unable to obtain SVG root element'); | |
| setCTM(g, g.getCTM()); | |
| g.removeAttribute("viewBox"); | |
| svgRoot = g; | |
| } | |
| return svgRoot; | |
| } | |
| /** | |
| * 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 (var i in attributes) | |
| element.setAttributeNS(null, i, attributes[i]); | |
| } | |
| /** | |
| * Handle mouse wheel event. | |
| */ | |
| function handleMouseWheel(evt) { | |
| if(!enableZoom) | |
| return; | |
| 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 | |
| var g = getRoot(svgDoc); | |
| 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)); | |
| if(typeof(stateTf) == "undefined") | |
| stateTf = g.getCTM().inverse(); | |
| 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 = getRoot(svgDoc); | |
| if(state == 'pan' && enablePan) { | |
| // Pan mode | |
| var p = getEventPoint(evt).matrixTransform(stateTf); | |
| setCTM(g, stateTf.inverse().translate(p.x - stateOrigin.x, p.y - stateOrigin.y)); | |
| } else if(state == 'drag' && enableDrag) { | |
| // Drag 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 = getRoot(svgDoc); | |
| if( | |
| evt.target.tagName == "svg" | |
| || !enableDrag // Pan anyway when drag is disabled and the user clicked on an element | |
| ) { | |
| // Pan mode | |
| state = 'pan'; | |
| stateTf = g.getCTM().inverse(); | |
| stateOrigin = getEventPoint(evt).matrixTransform(stateTf); | |
| } else { | |
| // Drag mode | |
| state = 'drag'; | |
| 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 == 'drag') { | |
| // Quit pan mode | |
| state = ''; | |
| } | |
| } | |
| ]]></script><g id="viewport" transform="scale(0.5,0.5) translate(0,0)"><g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 1509)"> | |
| <title>bleve-query</title> | |
| <polygon fill="white" stroke="none" points="-4,4 -4,-1509 3125.73,-1509 3125.73,4 -4,4"/> | |
| <g id="clust1" class="cluster"><title>cluster_L</title> | |
| <polygon fill="none" stroke="black" points="349.254,-1313 349.254,-1497 837.254,-1497 837.254,-1313 349.254,-1313"/> | |
| </g> | |
| <!-- L --> | |
| <g id="node1" class="node"><title>L</title> | |
| <polygon fill="#f8f8f8" stroke="black" points="828.832,-1489 357.675,-1489 357.675,-1321 828.832,-1321 828.832,-1489"/> | |
| <text text-anchor="start" x="365.465" y="-1459.4" font-family="Times,serif" font-size="32.00">File: bleve-query</text> | |
| <text text-anchor="start" x="365.465" y="-1427.4" font-family="Times,serif" font-size="32.00">Type: cpu</text> | |
| <text text-anchor="start" x="365.465" y="-1395.4" font-family="Times,serif" font-size="32.00">50.36s of 50.86s total (99.02%)</text> | |
| <text text-anchor="start" x="365.465" y="-1363.4" font-family="Times,serif" font-size="32.00">Dropped 128 nodes (cum <= 0.25s)</text> | |
| <text text-anchor="start" x="365.465" y="-1331.4" font-family="Times,serif" font-size="32.00">Dropped 1 edge (freq <= 0.05s)</text> | |
| </g> | |
| <!-- N1 --> | |
| <g id="node2" class="node"><title>N1</title> | |
| <g id="a_node2"><a xlink:title="github.com/couchbase/moss.(*iterator).Next (9.06s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1109.97,-438 666.535,-438 666.535,-358 1109.97,-358 1109.97,-438"/> | |
| <text text-anchor="middle" x="888.254" y="-414.8" font-family="Times,serif" font-size="24.00">github.com/couchbase/moss.(*iterator).Next</text> | |
| <text text-anchor="middle" x="888.254" y="-390.8" font-family="Times,serif" font-size="24.00">5.06s(9.95%)</text> | |
| <text text-anchor="middle" x="888.254" y="-366.8" font-family="Times,serif" font-size="24.00">of 9.06s(17.81%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9 --> | |
| <g id="node10" class="node"><title>N9</title> | |
| <g id="a_node10"><a xlink:title="github.com/couchbase/moss.(*segment).GetOperationKeyVal (2.43s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="802.627,-308 291.881,-308 291.881,-260 802.627,-260 802.627,-308"/> | |
| <text text-anchor="middle" x="547.254" y="-288" font-family="Times,serif" font-size="20.00">github.com/couchbase/moss.(*segment).GetOperationKeyVal</text> | |
| <text text-anchor="middle" x="547.254" y="-268" font-family="Times,serif" font-size="20.00">2.43s(4.78%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N9 --> | |
| <g id="edge21" class="edge"><title>N1->N9</title> | |
| <g id="a_edge21"><a xlink:title="github.com/couchbase/moss.(*iterator).Next -> github.com/couchbase/moss.(*segment).GetOperationKeyVal (2.43s)"> | |
| <path fill="none" stroke="black" d="M769.467,-357.985C722.39,-342.523 669.504,-325.153 627.138,-311.238"/> | |
| <polygon fill="black" stroke="black" points="628.03,-307.847 617.438,-308.052 625.846,-314.497 628.03,-307.847"/> | |
| </a> | |
| </g> | |
| <g id="a_edge21-label"><a xlink:title="github.com/couchbase/moss.(*iterator).Next -> github.com/couchbase/moss.(*segment).GetOperationKeyVal (2.43s)"> | |
| <text text-anchor="middle" x="724.978" y="-328.8" font-family="Times,serif" font-size="14.00"> 2.43s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16 --> | |
| <g id="node17" class="node"><title>N16</title> | |
| <g id="a_node17"><a xlink:title="github.com/couchbase/moss.iteratorBytesEqual (1.57s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1160.13,-305 820.382,-305 820.382,-263 1160.13,-263 1160.13,-305"/> | |
| <text text-anchor="middle" x="990.254" y="-287.4" font-family="Times,serif" font-size="17.00">github.com/couchbase/moss.iteratorBytesEqual</text> | |
| <text text-anchor="middle" x="990.254" y="-270.4" font-family="Times,serif" font-size="17.00">1.57s(3.09%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N16 --> | |
| <g id="edge22" class="edge"><title>N1->N16</title> | |
| <g id="a_edge22"><a xlink:title="github.com/couchbase/moss.(*iterator).Next -> github.com/couchbase/moss.iteratorBytesEqual (1.57s)"> | |
| <path fill="none" stroke="black" d="M923.928,-357.828C937.471,-342.957 952.603,-326.342 964.99,-312.74"/> | |
| <polygon fill="black" stroke="black" points="967.788,-314.866 971.933,-305.116 962.612,-310.153 967.788,-314.866"/> | |
| </a> | |
| </g> | |
| <g id="a_edge22-label"><a xlink:title="github.com/couchbase/moss.(*iterator).Next -> github.com/couchbase/moss.iteratorBytesEqual (1.57s)"> | |
| <text text-anchor="middle" x="968.978" y="-328.8" font-family="Times,serif" font-size="14.00"> 1.57s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2 --> | |
| <g id="node3" class="node"><title>N2</title> | |
| <g id="a_node3"><a xlink:title="runtime.usleep (4.33s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1148.3,-1097 996.208,-1097 996.208,-1043 1148.3,-1043 1148.3,-1097"/> | |
| <text text-anchor="middle" x="1072.25" y="-1074.6" font-family="Times,serif" font-size="23.00">runtime.usleep</text> | |
| <text text-anchor="middle" x="1072.25" y="-1051.6" font-family="Times,serif" font-size="23.00">4.33s(8.51%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3 --> | |
| <g id="node4" class="node"><title>N3</title> | |
| <g id="a_node4"><a xlink:title="runtime.indexbytebody (4.19s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="450.239,-425 220.268,-425 220.268,-371 450.239,-371 450.239,-425"/> | |
| <text text-anchor="middle" x="335.254" y="-402.6" font-family="Times,serif" font-size="23.00">runtime.indexbytebody</text> | |
| <text text-anchor="middle" x="335.254" y="-379.6" font-family="Times,serif" font-size="23.00">4.19s(8.24%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4 --> | |
| <g id="node5" class="node"><title>N4</title> | |
| <g id="a_node5"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next (32.15s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1320.55,-680 455.954,-680 455.954,-606 1320.55,-606 1320.55,-680"/> | |
| <text text-anchor="middle" x="888.254" y="-658.4" font-family="Times,serif" font-size="22.00">github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next</text> | |
| <text text-anchor="middle" x="888.254" y="-636.4" font-family="Times,serif" font-size="22.00">3.71s(7.29%)</text> | |
| <text text-anchor="middle" x="888.254" y="-614.4" font-family="Times,serif" font-size="22.00">of 32.15s(63.21%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7 --> | |
| <g id="node8" class="node"><title>N7</title> | |
| <g id="a_node8"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseV (5.78s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1777.89,-556 1106.62,-556 1106.62,-488 1777.89,-488 1777.89,-556"/> | |
| <text text-anchor="middle" x="1442.25" y="-536" font-family="Times,serif" font-size="20.00">github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseV</text> | |
| <text text-anchor="middle" x="1442.25" y="-516" font-family="Times,serif" font-size="20.00">2.59s(5.09%)</text> | |
| <text text-anchor="middle" x="1442.25" y="-496" font-family="Times,serif" font-size="20.00">of 5.78s(11.36%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N7 --> | |
| <g id="edge12" class="edge"><title>N4->N7</title> | |
| <g id="a_edge12"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next -> github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseV (5.78s)"> | |
| <path fill="none" stroke="black" d="M1049.91,-605.989C1097.23,-595.552 1149.07,-584.22 1196.81,-574 1221.04,-568.812 1246.64,-563.409 1271.79,-558.143"/> | |
| <polygon fill="black" stroke="black" points="1272.71,-561.527 1281.78,-556.054 1271.27,-554.675 1272.71,-561.527"/> | |
| </a> | |
| </g> | |
| <g id="a_edge12-label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next -> github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseV (5.78s)"> | |
| <text text-anchor="middle" x="1213.98" y="-576.8" font-family="Times,serif" font-size="14.00"> 5.78s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11 --> | |
| <g id="node12" class="node"><title>N11</title> | |
| <g id="a_node12"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseKDoc (6.85s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="670.261,-554.5 0.246157,-554.5 0.246157,-489.5 670.261,-489.5 670.261,-554.5"/> | |
| <text text-anchor="middle" x="335.254" y="-535.3" font-family="Times,serif" font-size="19.00">github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseKDoc</text> | |
| <text text-anchor="middle" x="335.254" y="-516.3" font-family="Times,serif" font-size="19.00">2.26s(4.44%)</text> | |
| <text text-anchor="middle" x="335.254" y="-497.3" font-family="Times,serif" font-size="19.00">of 6.85s(13.47%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N11 --> | |
| <g id="edge10" class="edge"><title>N4->N11</title> | |
| <g id="a_edge10"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next -> github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseKDoc (6.85s)"> | |
| <path fill="none" stroke="black" d="M720.835,-605.973C648.119,-590.325 563.416,-572.098 491.951,-556.72"/> | |
| <polygon fill="black" stroke="black" points="492.47,-553.251 481.957,-554.569 490.997,-560.095 492.47,-553.251"/> | |
| </a> | |
| </g> | |
| <g id="a_edge10-label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next -> github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseKDoc (6.85s)"> | |
| <text text-anchor="middle" x="645.978" y="-576.8" font-family="Times,serif" font-size="14.00"> 6.85s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13 --> | |
| <g id="node14" class="node"><title>N13</title> | |
| <g id="a_node14"><a xlink:title="runtime.memmove (1.96s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="2382.72,-544 2229.79,-544 2229.79,-500 2382.72,-500 2382.72,-544"/> | |
| <text text-anchor="middle" x="2306.25" y="-525.6" font-family="Times,serif" font-size="18.00">runtime.memmove</text> | |
| <text text-anchor="middle" x="2306.25" y="-507.6" font-family="Times,serif" font-size="18.00">1.96s(3.85%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N13 --> | |
| <g id="edge23" class="edge"><title>N4->N13</title> | |
| <g id="a_edge23"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next -> runtime.memmove (1.06s)"> | |
| <path fill="none" stroke="black" d="M1227.46,-605.995C1247.57,-600.777 1267.31,-594.813 1286.25,-588 1297.35,-584.008 1297.49,-577.347 1308.81,-574 1406.04,-545.232 2121.77,-575.651 2221.25,-556 2231.15,-554.044 2241.39,-551.016 2251.19,-547.571"/> | |
| <polygon fill="black" stroke="black" points="2252.65,-550.764 2260.81,-544.011 2250.22,-544.199 2252.65,-550.764"/> | |
| </a> | |
| </g> | |
| <g id="a_edge23-label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next -> runtime.memmove (1.06s)"> | |
| <text text-anchor="middle" x="1325.98" y="-576.8" font-family="Times,serif" font-size="14.00"> 1.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18 --> | |
| <g id="node19" class="node"><title>N18</title> | |
| <g id="a_node19"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).Current (0.95s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="2212.54,-541 1795.96,-541 1795.96,-503 2212.54,-503 2212.54,-541"/> | |
| <text text-anchor="middle" x="2004.25" y="-525" font-family="Times,serif" font-size="15.00">github.com/blevesearch/bleve/index/store/moss.(*Iterator).Current</text> | |
| <text text-anchor="middle" x="2004.25" y="-510" font-family="Times,serif" font-size="15.00">0.95s(1.87%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N18 --> | |
| <g id="edge24" class="edge"><title>N4->N18</title> | |
| <g id="a_edge24"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next -> github.com/blevesearch/bleve/index/store/moss.(*Iterator).Current (0.95s)"> | |
| <path fill="none" stroke="black" d="M1173.25,-605.963C1192.77,-600.762 1211.94,-594.81 1230.25,-588 1241.31,-583.887 1241.52,-577.426 1252.81,-574 1309.66,-556.747 1728.09,-561.476 1787.25,-556 1821.62,-552.82 1858.82,-547.76 1892.56,-542.548"/> | |
| <polygon fill="black" stroke="black" points="1893.11,-546.005 1902.44,-541.002 1892.02,-539.09 1893.11,-546.005"/> | |
| </a> | |
| </g> | |
| <g id="a_edge24-label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next -> github.com/blevesearch/bleve/index/store/moss.(*Iterator).Current (0.95s)"> | |
| <text text-anchor="middle" x="1269.98" y="-576.8" font-family="Times,serif" font-size="14.00"> 0.95s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19 --> | |
| <g id="node20" class="node"><title>N19</title> | |
| <g id="a_node20"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next (13.91s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1087.88,-548.5 688.626,-548.5 688.626,-495.5 1087.88,-495.5 1087.88,-548.5"/> | |
| <text text-anchor="middle" x="888.254" y="-532.5" font-family="Times,serif" font-size="15.00">github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next</text> | |
| <text text-anchor="middle" x="888.254" y="-517.5" font-family="Times,serif" font-size="15.00">0.84s(1.65%)</text> | |
| <text text-anchor="middle" x="888.254" y="-502.5" font-family="Times,serif" font-size="15.00">of 13.91s(27.35%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N19 --> | |
| <g id="edge8" class="edge"><title>N4->N19</title> | |
| <g id="a_edge8"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next -> github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next (13.80s)"> | |
| <path fill="none" stroke="black" stroke-width="2" d="M888.254,-605.973C888.254,-591.11 888.254,-573.921 888.254,-559.055"/> | |
| <polygon fill="black" stroke="black" stroke-width="2" points="891.754,-558.708 888.254,-548.708 884.754,-558.708 891.754,-558.708"/> | |
| </a> | |
| </g> | |
| <g id="a_edge8-label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next -> github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next (13.80s)"> | |
| <text text-anchor="middle" x="908.478" y="-576.8" font-family="Times,serif" font-size="14.00"> 13.80s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5 --> | |
| <g id="node6" class="node"><title>N5</title> | |
| <g id="a_node6"><a xlink:title="github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score (5.96s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="2063,-680 1407.51,-680 1407.51,-606 2063,-606 2063,-680"/> | |
| <text text-anchor="middle" x="1735.25" y="-658.4" font-family="Times,serif" font-size="22.00">github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score</text> | |
| <text text-anchor="middle" x="1735.25" y="-636.4" font-family="Times,serif" font-size="22.00">3.44s(6.76%)</text> | |
| <text text-anchor="middle" x="1735.25" y="-614.4" font-family="Times,serif" font-size="22.00">of 5.96s(11.72%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12 --> | |
| <g id="node13" class="node"><title>N12</title> | |
| <g id="a_node13"><a xlink:title="runtime.duffzero (2.18s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="2544.11,-545 2400.39,-545 2400.39,-499 2544.11,-499 2544.11,-545"/> | |
| <text text-anchor="middle" x="2472.25" y="-525.8" font-family="Times,serif" font-size="19.00">runtime.duffzero</text> | |
| <text text-anchor="middle" x="2472.25" y="-506.8" font-family="Times,serif" font-size="19.00">2.18s(4.29%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5->N12 --> | |
| <g id="edge25" class="edge"><title>N5->N12</title> | |
| <g id="a_edge25"><a xlink:title="github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score -> runtime.duffzero (0.92s)"> | |
| <path fill="none" stroke="black" d="M2062.95,-615.751C2168.85,-602.844 2286.04,-583.833 2391.25,-556 2398.79,-554.007 2406.56,-551.486 2414.17,-548.73"/> | |
| <polygon fill="black" stroke="black" points="2415.57,-551.942 2423.68,-545.134 2413.09,-545.394 2415.57,-551.942"/> | |
| </a> | |
| </g> | |
| <g id="a_edge25-label"><a xlink:title="github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score -> runtime.duffzero (0.92s)"> | |
| <text text-anchor="middle" x="2320.98" y="-576.8" font-family="Times,serif" font-size="14.00"> 0.92s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5->N13 --> | |
| <g id="edge26" class="edge"><title>N5->N13</title> | |
| <g id="a_edge26"><a xlink:title="github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score -> runtime.memmove (0.87s)"> | |
| <path fill="none" stroke="black" d="M1871.09,-605.979C1919.33,-594.283 1974.22,-582.217 2024.81,-574 2111.35,-559.943 2135.9,-576.061 2221.25,-556 2230.52,-553.823 2240.12,-550.848 2249.39,-547.571"/> | |
| <polygon fill="black" stroke="black" points="2250.72,-550.808 2258.9,-544.067 2248.3,-544.24 2250.72,-550.808"/> | |
| </a> | |
| </g> | |
| <g id="a_edge26-label"><a xlink:title="github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score -> runtime.memmove (0.87s)"> | |
| <text text-anchor="middle" x="2041.98" y="-576.8" font-family="Times,serif" font-size="14.00"> 0.87s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21 --> | |
| <g id="node22" class="node"><title>N21</title> | |
| <g id="a_node22"><a xlink:title="github.com/blevesearch/bleve/search.(*DocumentMatchPool).Get (0.72s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="2974.7,-541 2561.8,-541 2561.8,-503 2974.7,-503 2974.7,-541"/> | |
| <text text-anchor="middle" x="2768.25" y="-525" font-family="Times,serif" font-size="15.00">github.com/blevesearch/bleve/search.(*DocumentMatchPool).Get</text> | |
| <text text-anchor="middle" x="2768.25" y="-510" font-family="Times,serif" font-size="15.00">0.72s(1.42%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5->N21 --> | |
| <g id="edge33" class="edge"><title>N5->N21</title> | |
| <g id="a_edge33"><a xlink:title="github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score -> github.com/blevesearch/bleve/search.(*DocumentMatchPool).Get (0.72s)"> | |
| <path fill="none" stroke="black" d="M2063.11,-616.461C2153.36,-608.43 2251.19,-598.799 2341.25,-588 2435.87,-576.655 2459.05,-570.339 2553.25,-556 2581.64,-551.679 2612.13,-547.014 2640.97,-542.59"/> | |
| <polygon fill="black" stroke="black" points="2641.74,-546.012 2651.1,-541.036 2640.68,-539.093 2641.74,-546.012"/> | |
| </a> | |
| </g> | |
| <g id="a_edge33-label"><a xlink:title="github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score -> github.com/blevesearch/bleve/search.(*DocumentMatchPool).Get (0.72s)"> | |
| <text text-anchor="middle" x="2457.98" y="-576.8" font-family="Times,serif" font-size="14.00"> 0.72s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6 --> | |
| <g id="node7" class="node"><title>N6</title> | |
| <g id="a_node7"><a xlink:title="encoding/binary.Uvarint (3.19s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1860.75,-423 1639.76,-423 1639.76,-373 1860.75,-373 1860.75,-423"/> | |
| <text text-anchor="middle" x="1750.25" y="-402.2" font-family="Times,serif" font-size="21.00">encoding/binary.Uvarint</text> | |
| <text text-anchor="middle" x="1750.25" y="-381.2" font-family="Times,serif" font-size="21.00">3.19s(6.27%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N6 --> | |
| <g id="edge18" class="edge"><title>N7->N6</title> | |
| <g id="a_edge18"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseV -> encoding/binary.Uvarint (3.19s)"> | |
| <path fill="none" stroke="black" d="M1525.6,-487.985C1573.84,-468.879 1633.88,-445.097 1679.75,-426.927"/> | |
| <polygon fill="black" stroke="black" points="1681.31,-430.075 1689.31,-423.139 1678.73,-423.567 1681.31,-430.075"/> | |
| </a> | |
| </g> | |
| <g id="a_edge18-label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseV -> encoding/binary.Uvarint (3.19s)"> | |
| <text text-anchor="middle" x="1622.98" y="-458.8" font-family="Times,serif" font-size="14.00"> 3.19s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8 --> | |
| <g id="node9" class="node"><title>N8</title> | |
| <g id="a_node9"><a xlink:title="github.com/couchbase/moss.(*iterator).Current (2.53s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1572.49,-308 1178.02,-308 1178.02,-260 1572.49,-260 1572.49,-308"/> | |
| <text text-anchor="middle" x="1375.25" y="-288" font-family="Times,serif" font-size="20.00">github.com/couchbase/moss.(*iterator).Current</text> | |
| <text text-anchor="middle" x="1375.25" y="-268" font-family="Times,serif" font-size="20.00">2.53s(4.97%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10 --> | |
| <g id="node11" class="node"><title>N10</title> | |
| <g id="a_node11"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).Collect (45.91s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1191.35,-907 585.159,-907 585.159,-842 1191.35,-842 1191.35,-907"/> | |
| <text text-anchor="middle" x="888.254" y="-887.8" font-family="Times,serif" font-size="19.00">github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).Collect</text> | |
| <text text-anchor="middle" x="888.254" y="-868.8" font-family="Times,serif" font-size="19.00">2.33s(4.58%)</text> | |
| <text text-anchor="middle" x="888.254" y="-849.8" font-family="Times,serif" font-size="19.00">of 45.91s(90.27%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14 --> | |
| <g id="node15" class="node"><title>N14</title> | |
| <g id="a_node15"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).collectSingle (2.83s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1769.78,-792 1152.73,-792 1152.73,-730 1769.78,-730 1769.78,-792"/> | |
| <text text-anchor="middle" x="1461.25" y="-773.6" font-family="Times,serif" font-size="18.00">github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).collectSingle</text> | |
| <text text-anchor="middle" x="1461.25" y="-755.6" font-family="Times,serif" font-size="18.00">1.77s(3.48%)</text> | |
| <text text-anchor="middle" x="1461.25" y="-737.6" font-family="Times,serif" font-size="18.00">of 2.83s(5.56%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10->N14 --> | |
| <g id="edge19" class="edge"><title>N10->N14</title> | |
| <g id="a_edge19"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).Collect -> github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).collectSingle (2.83s)"> | |
| <path fill="none" stroke="black" d="M1050.15,-841.996C1127.28,-826.989 1219.36,-809.071 1296.8,-794.001"/> | |
| <polygon fill="black" stroke="black" points="1297.51,-797.429 1306.66,-792.083 1296.17,-790.558 1297.51,-797.429"/> | |
| </a> | |
| </g> | |
| <g id="a_edge19-label"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).Collect -> github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).collectSingle (2.83s)"> | |
| <text text-anchor="middle" x="1225.98" y="-812.8" font-family="Times,serif" font-size="14.00"> 2.83s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15 --> | |
| <g id="node16" class="node"><title>N15</title> | |
| <g id="a_node16"><a xlink:title="github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next (40.43s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1134.25,-790.5 642.254,-790.5 642.254,-731.5 1134.25,-731.5 1134.25,-790.5"/> | |
| <text text-anchor="middle" x="888.254" y="-772.9" font-family="Times,serif" font-size="17.00">github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next</text> | |
| <text text-anchor="middle" x="888.254" y="-755.9" font-family="Times,serif" font-size="17.00">1.58s(3.11%)</text> | |
| <text text-anchor="middle" x="888.254" y="-738.9" font-family="Times,serif" font-size="17.00">of 40.43s(79.49%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10->N15 --> | |
| <g id="edge6" class="edge"><title>N10->N15</title> | |
| <g id="a_edge6"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).Collect -> github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next (40.43s)"> | |
| <path fill="none" stroke="black" stroke-width="4" d="M888.254,-841.847C888.254,-829.146 888.254,-814.379 888.254,-801.024"/> | |
| <polygon fill="black" stroke="black" stroke-width="4" points="891.754,-800.682 888.254,-790.682 884.754,-800.682 891.754,-800.682"/> | |
| </a> | |
| </g> | |
| <g id="a_edge6-label"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).Collect -> github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next (40.43s)"> | |
| <text text-anchor="middle" x="908.478" y="-812.8" font-family="Times,serif" font-size="14.00"> 40.43s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11->N3 --> | |
| <g id="edge16" class="edge"><title>N11->N3</title> | |
| <g id="a_edge16"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseKDoc -> runtime.indexbytebody (4.19s)"> | |
| <path fill="none" stroke="black" d="M335.254,-489.264C335.254,-472.777 335.254,-452.551 335.254,-435.427"/> | |
| <polygon fill="black" stroke="black" points="338.754,-435.227 335.254,-425.227 331.754,-435.227 338.754,-435.227"/> | |
| </a> | |
| </g> | |
| <g id="a_edge16-label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseKDoc -> runtime.indexbytebody (4.19s)"> | |
| <text text-anchor="middle" x="351.978" y="-458.8" font-family="Times,serif" font-size="14.00"> 4.19s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N22 --> | |
| <g id="node23" class="node"><title>N22</title> | |
| <g id="a_node23"><a xlink:title="bytes.IndexByte (0.40s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="202.597,-416 101.911,-416 101.911,-380 202.597,-380 202.597,-416"/> | |
| <text text-anchor="middle" x="152.254" y="-400.6" font-family="Times,serif" font-size="13.00">bytes.IndexByte</text> | |
| <text text-anchor="middle" x="152.254" y="-387.6" font-family="Times,serif" font-size="13.00">0.40s(0.79%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11->N22 --> | |
| <g id="edge37" class="edge"><title>N11->N22</title> | |
| <g id="a_edge37"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseKDoc -> bytes.IndexByte (0.40s)"> | |
| <path fill="none" stroke="black" d="M287.65,-489.264C255.883,-468.086 214.864,-440.74 186.338,-421.723"/> | |
| <polygon fill="black" stroke="black" points="188.173,-418.739 177.911,-416.105 184.29,-424.564 188.173,-418.739"/> | |
| </a> | |
| </g> | |
| <g id="a_edge37-label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseKDoc -> bytes.IndexByte (0.40s)"> | |
| <text text-anchor="middle" x="271.978" y="-458.8" font-family="Times,serif" font-size="14.00"> 0.40s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14->N12 --> | |
| <g id="edge35" class="edge"><title>N14->N12</title> | |
| <g id="a_edge35"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).collectSingle -> runtime.duffzero (0.52s)"> | |
| <path fill="none" stroke="black" d="M1737.85,-729.954C1842.93,-716.924 1963.49,-700.026 2072.25,-680 2245.7,-648.065 2334.92,-714.06 2458.25,-588 2466.75,-579.321 2470.62,-566.8 2472.24,-555.06"/> | |
| <polygon fill="black" stroke="black" points="2475.73,-555.334 2473.15,-545.06 2468.76,-554.705 2475.73,-555.334"/> | |
| </a> | |
| </g> | |
| <g id="a_edge35-label"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).collectSingle -> runtime.duffzero (0.52s)"> | |
| <text text-anchor="middle" x="2454.98" y="-638.8" font-family="Times,serif" font-size="14.00"> 0.52s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24 --> | |
| <g id="node25" class="node"><title>N24</title> | |
| <g id="a_node25"><a xlink:title="runtime.newobject (0.72s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="3081.45,-662 2991.06,-662 2991.06,-624 3081.45,-624 3081.45,-662"/> | |
| <text text-anchor="middle" x="3036.25" y="-650" font-family="Times,serif" font-size="10.00">runtime.newobject</text> | |
| <text text-anchor="middle" x="3036.25" y="-640" font-family="Times,serif" font-size="10.00">0.02s(0.039%)</text> | |
| <text text-anchor="middle" x="3036.25" y="-630" font-family="Times,serif" font-size="10.00">of 0.72s(1.42%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14->N24 --> | |
| <g id="edge36" class="edge"><title>N14->N24</title> | |
| <g id="a_edge36"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).collectSingle -> runtime.newobject (0.46s)"> | |
| <path fill="none" stroke="black" d="M1770.02,-751.674C1973.68,-744.673 2246.18,-732.432 2486.25,-712 2667.73,-696.555 2881.56,-666.77 2980.66,-652.297"/> | |
| <polygon fill="black" stroke="black" points="2981.36,-655.733 2990.74,-650.82 2980.34,-648.807 2981.36,-655.733"/> | |
| </a> | |
| </g> | |
| <g id="a_edge36-label"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).collectSingle -> runtime.newobject (0.46s)"> | |
| <text text-anchor="middle" x="2638.98" y="-700.8" font-family="Times,serif" font-size="14.00"> 0.46s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15->N4 --> | |
| <g id="edge7" class="edge"><title>N15->N4</title> | |
| <g id="a_edge7"><a xlink:title="github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next -> github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next (32.15s)"> | |
| <path fill="none" stroke="black" stroke-width="4" d="M888.254,-731.326C888.254,-719.029 888.254,-704.346 888.254,-690.561"/> | |
| <polygon fill="black" stroke="black" stroke-width="4" points="891.754,-690.248 888.254,-680.248 884.754,-690.248 891.754,-690.248"/> | |
| </a> | |
| </g> | |
| <g id="a_edge7-label"><a xlink:title="github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next -> github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next (32.15s)"> | |
| <text text-anchor="middle" x="908.478" y="-700.8" font-family="Times,serif" font-size="14.00"> 32.15s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15->N5 --> | |
| <g id="edge11" class="edge"><title>N15->N5</title> | |
| <g id="a_edge11"><a xlink:title="github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next -> github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score (5.96s)"> | |
| <path fill="none" stroke="black" d="M1128.47,-731.481C1133.44,-730.975 1138.37,-730.48 1143.25,-730 1243.97,-720.086 1269.92,-725.286 1370.25,-712 1429.75,-704.121 1494.26,-692.977 1552.26,-681.986"/> | |
| <polygon fill="black" stroke="black" points="1553.09,-685.391 1562.25,-680.081 1551.77,-678.515 1553.09,-685.391"/> | |
| </a> | |
| </g> | |
| <g id="a_edge11-label"><a xlink:title="github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next -> github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score (5.96s)"> | |
| <text text-anchor="middle" x="1477.98" y="-700.8" font-family="Times,serif" font-size="14.00"> 5.96s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15->N12 --> | |
| <g id="edge32" class="edge"><title>N15->N12</title> | |
| <g id="a_edge32"><a xlink:title="github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next -> runtime.duffzero (0.74s)"> | |
| <path fill="none" stroke="black" d="M1092.98,-731.462C1198.55,-715.21 1309.39,-695.137 1329.25,-680 1358.27,-657.884 1334.46,-626.264 1364.81,-606 1472.97,-533.761 1819.33,-580.202 1949.25,-574 2047.45,-569.313 2295.19,-576.856 2391.25,-556 2399.57,-554.194 2408.13,-551.596 2416.43,-548.64"/> | |
| <polygon fill="black" stroke="black" points="2417.89,-551.83 2426.02,-545.032 2415.43,-545.278 2417.89,-551.83"/> | |
| </a> | |
| </g> | |
| <g id="a_edge32-label"><a xlink:title="github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next -> runtime.duffzero (0.74s)"> | |
| <text text-anchor="middle" x="1381.98" y="-638.8" font-family="Times,serif" font-size="14.00"> 0.74s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17 --> | |
| <g id="node18" class="node"><title>N17</title> | |
| <g id="a_node18"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).checkDone (4.01s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1622.45,-427.5 1128.06,-427.5 1128.06,-368.5 1622.45,-368.5 1622.45,-427.5"/> | |
| <text text-anchor="middle" x="1375.25" y="-409.9" font-family="Times,serif" font-size="17.00">github.com/blevesearch/bleve/index/store/moss.(*Iterator).checkDone</text> | |
| <text text-anchor="middle" x="1375.25" y="-392.9" font-family="Times,serif" font-size="17.00">1.48s(2.91%)</text> | |
| <text text-anchor="middle" x="1375.25" y="-375.9" font-family="Times,serif" font-size="17.00">of 4.01s(7.88%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17->N8 --> | |
| <g id="edge20" class="edge"><title>N17->N8</title> | |
| <g id="a_edge20"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).checkDone -> github.com/couchbase/moss.(*iterator).Current (2.53s)"> | |
| <path fill="none" stroke="black" d="M1375.25,-368.448C1375.25,-353.282 1375.25,-334.549 1375.25,-318.676"/> | |
| <polygon fill="black" stroke="black" points="1378.75,-318.223 1375.25,-308.223 1371.75,-318.223 1378.75,-318.223"/> | |
| </a> | |
| </g> | |
| <g id="a_edge20-label"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).checkDone -> github.com/couchbase/moss.(*iterator).Current (2.53s)"> | |
| <text text-anchor="middle" x="1391.98" y="-328.8" font-family="Times,serif" font-size="14.00"> 2.53s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19->N1 --> | |
| <g id="edge9" class="edge"><title>N19->N1</title> | |
| <g id="a_edge9"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next -> github.com/couchbase/moss.(*iterator).Next (9.06s)"> | |
| <path fill="none" stroke="black" d="M888.254,-495.425C888.254,-481.783 888.254,-464.525 888.254,-448.392"/> | |
| <polygon fill="black" stroke="black" points="891.754,-448.001 888.254,-438.001 884.754,-448.001 891.754,-448.001"/> | |
| </a> | |
| </g> | |
| <g id="a_edge9-label"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next -> github.com/couchbase/moss.(*iterator).Next (9.06s)"> | |
| <text text-anchor="middle" x="904.978" y="-458.8" font-family="Times,serif" font-size="14.00"> 9.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19->N17 --> | |
| <g id="edge17" class="edge"><title>N19->N17</title> | |
| <g id="a_edge17"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next -> github.com/blevesearch/bleve/index/store/moss.(*Iterator).checkDone (4.01s)"> | |
| <path fill="none" stroke="black" d="M990.048,-495.499C1066.14,-476.436 1170.56,-450.278 1251.49,-430.006"/> | |
| <polygon fill="black" stroke="black" points="1252.39,-433.388 1261.23,-427.563 1250.68,-426.598 1252.39,-433.388"/> | |
| </a> | |
| </g> | |
| <g id="a_edge17-label"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next -> github.com/blevesearch/bleve/index/store/moss.(*Iterator).checkDone (4.01s)"> | |
| <text text-anchor="middle" x="1163.98" y="-458.8" font-family="Times,serif" font-size="14.00"> 4.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20 --> | |
| <g id="node21" class="node"><title>N20</title> | |
| <g id="a_node21"><a xlink:title="runtime.(*mcentral).grow (0.78s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="3121.7,-38 2950.81,-38 2950.81,-0 3121.7,-0 3121.7,-38"/> | |
| <text text-anchor="middle" x="3036.25" y="-22" font-family="Times,serif" font-size="15.00">runtime.(*mcentral).grow</text> | |
| <text text-anchor="middle" x="3036.25" y="-7" font-family="Times,serif" font-size="15.00">0.78s(1.53%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23 --> | |
| <g id="node24" class="node"><title>N23</title> | |
| <g id="a_node24"><a xlink:title="runtime.mallocgc (0.86s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="3079.51,-541 2993,-541 2993,-503 3079.51,-503 3079.51,-541"/> | |
| <text text-anchor="middle" x="3036.25" y="-529" font-family="Times,serif" font-size="10.00">runtime.mallocgc</text> | |
| <text text-anchor="middle" x="3036.25" y="-519" font-family="Times,serif" font-size="10.00">0.02s(0.039%)</text> | |
| <text text-anchor="middle" x="3036.25" y="-509" font-family="Times,serif" font-size="10.00">of 0.86s(1.69%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26 --> | |
| <g id="node27" class="node"><title>N26</title> | |
| <g id="a_node27"><a xlink:title="runtime.systemstack (0.84s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="3080.99,-416 2991.52,-416 2991.52,-380 3080.99,-380 3080.99,-416"/> | |
| <text text-anchor="middle" x="3036.25" y="-404.3" font-family="Times,serif" font-size="9.00">runtime.systemstack</text> | |
| <text text-anchor="middle" x="3036.25" y="-395.3" font-family="Times,serif" font-size="9.00">0.01s(0.02%)</text> | |
| <text text-anchor="middle" x="3036.25" y="-386.3" font-family="Times,serif" font-size="9.00">of 0.84s(1.65%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23->N26 --> | |
| <g id="edge27" class="edge"><title>N23->N26</title> | |
| <g id="a_edge27"><a xlink:title="runtime.mallocgc -> runtime.systemstack (0.81s)"> | |
| <path fill="none" stroke="black" d="M3036.25,-502.998C3036.25,-482.857 3036.25,-449.99 3036.25,-426.598"/> | |
| <polygon fill="black" stroke="black" points="3039.75,-426.285 3036.25,-416.285 3032.75,-426.285 3039.75,-426.285"/> | |
| </a> | |
| </g> | |
| <g id="a_edge27-label"><a xlink:title="runtime.mallocgc -> runtime.systemstack (0.81s)"> | |
| <text text-anchor="middle" x="3052.98" y="-458.8" font-family="Times,serif" font-size="14.00"> 0.81s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24->N23 --> | |
| <g id="edge34" class="edge"><title>N24->N23</title> | |
| <g id="a_edge34"><a xlink:title="runtime.newobject -> runtime.mallocgc (0.70s)"> | |
| <path fill="none" stroke="black" d="M3036.25,-623.926C3036.25,-604.705 3036.25,-574.033 3036.25,-551.542"/> | |
| <polygon fill="black" stroke="black" points="3039.75,-551.244 3036.25,-541.244 3032.75,-551.244 3039.75,-551.244"/> | |
| </a> | |
| </g> | |
| <g id="a_edge34-label"><a xlink:title="runtime.newobject -> runtime.mallocgc (0.70s)"> | |
| <text text-anchor="middle" x="3052.98" y="-576.8" font-family="Times,serif" font-size="14.00"> 0.70s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25 --> | |
| <g id="node26" class="node"><title>N25</title> | |
| <g id="a_node26"><a xlink:title="runtime.sysmon (4.37s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1112.47,-1185 1032.04,-1185 1032.04,-1147 1112.47,-1147 1112.47,-1185"/> | |
| <text text-anchor="middle" x="1072.25" y="-1173" font-family="Times,serif" font-size="10.00">runtime.sysmon</text> | |
| <text text-anchor="middle" x="1072.25" y="-1163" font-family="Times,serif" font-size="10.00">0.02s(0.039%)</text> | |
| <text text-anchor="middle" x="1072.25" y="-1153" font-family="Times,serif" font-size="10.00">of 4.37s(8.59%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25->N2 --> | |
| <g id="edge15" class="edge"><title>N25->N2</title> | |
| <g id="a_edge15"><a xlink:title="runtime.sysmon -> runtime.usleep (4.33s)"> | |
| <path fill="none" stroke="black" d="M1072.25,-1146.88C1072.25,-1135.65 1072.25,-1120.84 1072.25,-1107.29"/> | |
| <polygon fill="black" stroke="black" points="1075.75,-1107.25 1072.25,-1097.25 1068.75,-1107.25 1075.75,-1107.25"/> | |
| </a> | |
| </g> | |
| <g id="a_edge15-label"><a xlink:title="runtime.sysmon -> runtime.usleep (4.33s)"> | |
| <text text-anchor="middle" x="1088.98" y="-1117.8" font-family="Times,serif" font-size="14.00"> 4.33s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34 --> | |
| <g id="node35" class="node"><title>N34</title> | |
| <g id="a_node35"><a xlink:title="runtime.mallocgc.func2 (0.77s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="3082.67,-302 2989.83,-302 2989.83,-266 3082.67,-266 3082.67,-302"/> | |
| <text text-anchor="middle" x="3036.25" y="-285.6" font-family="Times,serif" font-size="8.00">runtime.mallocgc.func2</text> | |
| <text text-anchor="middle" x="3036.25" y="-277.6" font-family="Times,serif" font-size="8.00">0 of 0.77s(1.51%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26->N34 --> | |
| <g id="edge31" class="edge"><title>N26->N34</title> | |
| <g id="a_edge31"><a xlink:title="runtime.systemstack -> runtime.mallocgc.func2 (0.77s)"> | |
| <path fill="none" stroke="black" d="M3036.25,-379.99C3036.25,-362.063 3036.25,-333.555 3036.25,-312.442"/> | |
| <polygon fill="black" stroke="black" points="3039.75,-312.17 3036.25,-302.17 3032.75,-312.171 3039.75,-312.17"/> | |
| </a> | |
| </g> | |
| <g id="a_edge31-label"><a xlink:title="runtime.systemstack -> runtime.mallocgc.func2 (0.77s)"> | |
| <text text-anchor="middle" x="3052.98" y="-328.8" font-family="Times,serif" font-size="14.00"> 0.77s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27 --> | |
| <g id="node28" class="node"><title>N27</title> | |
| <g id="a_node28"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).Search (46.28s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="977.973,-1088 798.535,-1088 798.535,-1052 977.973,-1052 977.973,-1088"/> | |
| <text text-anchor="middle" x="888.254" y="-1071.6" font-family="Times,serif" font-size="8.00">github.com/blevesearch/bleve.(*indexImpl).Search</text> | |
| <text text-anchor="middle" x="888.254" y="-1063.6" font-family="Times,serif" font-size="8.00">0 of 46.28s(90.99%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28 --> | |
| <g id="node29" class="node"><title>N28</title> | |
| <g id="a_node29"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).SearchInContext (46.28s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="993.969,-993 782.539,-993 782.539,-957 993.969,-957 993.969,-993"/> | |
| <text text-anchor="middle" x="888.254" y="-976.6" font-family="Times,serif" font-size="8.00">github.com/blevesearch/bleve.(*indexImpl).SearchInContext</text> | |
| <text text-anchor="middle" x="888.254" y="-968.6" font-family="Times,serif" font-size="8.00">0 of 46.28s(90.99%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27->N28 --> | |
| <g id="edge3" class="edge"><title>N27->N28</title> | |
| <g id="a_edge3"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).Search -> github.com/blevesearch/bleve.(*indexImpl).SearchInContext (46.28s)"> | |
| <path fill="none" stroke="black" stroke-width="5" d="M888.254,-1051.94C888.254,-1038.39 888.254,-1019.18 888.254,-1003.47"/> | |
| <polygon fill="black" stroke="black" stroke-width="5" points="892.629,-1003.26 888.254,-993.264 883.879,-1003.26 892.629,-1003.26"/> | |
| </a> | |
| </g> | |
| <g id="a_edge3-label"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).Search -> github.com/blevesearch/bleve.(*indexImpl).SearchInContext (46.28s)"> | |
| <text text-anchor="middle" x="908.478" y="-1013.8" font-family="Times,serif" font-size="14.00"> 46.28s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28->N10 --> | |
| <g id="edge5" class="edge"><title>N28->N10</title> | |
| <g id="a_edge5"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).SearchInContext -> github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).Collect (45.91s)"> | |
| <path fill="none" stroke="black" stroke-width="5" d="M888.254,-956.843C888.254,-945.95 888.254,-931.347 888.254,-917.521"/> | |
| <polygon fill="black" stroke="black" stroke-width="5" points="892.629,-917.174 888.254,-907.174 883.879,-917.174 892.629,-917.174"/> | |
| </a> | |
| </g> | |
| <g id="a_edge5-label"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).SearchInContext -> github.com/blevesearch/bleve/search/collectors.(*TopScoreCollector).Collect (45.91s)"> | |
| <text text-anchor="middle" x="908.478" y="-927.8" font-family="Times,serif" font-size="14.00"> 45.91s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29 --> | |
| <g id="node30" class="node"><title>N29</title> | |
| <g id="a_node30"><a xlink:title="main.main.func2 (46.29s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="929.024,-1271 847.484,-1271 847.484,-1235 929.024,-1235 929.024,-1271"/> | |
| <text text-anchor="middle" x="888.254" y="-1254.6" font-family="Times,serif" font-size="8.00">main.main.func2</text> | |
| <text text-anchor="middle" x="888.254" y="-1246.6" font-family="Times,serif" font-size="8.00">0 of 46.29s(91.01%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30 --> | |
| <g id="node31" class="node"><title>N30</title> | |
| <g id="a_node31"><a xlink:title="main.queryClient (46.29s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="929.024,-1184 847.484,-1184 847.484,-1148 929.024,-1148 929.024,-1184"/> | |
| <text text-anchor="middle" x="888.254" y="-1167.6" font-family="Times,serif" font-size="8.00">main.queryClient</text> | |
| <text text-anchor="middle" x="888.254" y="-1159.6" font-family="Times,serif" font-size="8.00">0 of 46.29s(91.01%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29->N30 --> | |
| <g id="edge1" class="edge"><title>N29->N30</title> | |
| <g id="a_edge1"><a xlink:title="main.main.func2 -> main.queryClient (46.29s)"> | |
| <path fill="none" stroke="black" stroke-width="5" d="M888.254,-1234.8C888.254,-1223.16 888.254,-1207.55 888.254,-1194.24"/> | |
| <polygon fill="black" stroke="black" stroke-width="5" points="892.629,-1194.18 888.254,-1184.18 883.879,-1194.18 892.629,-1194.18"/> | |
| </a> | |
| </g> | |
| <g id="a_edge1-label"><a xlink:title="main.main.func2 -> main.queryClient (46.29s)"> | |
| <text text-anchor="middle" x="908.478" y="-1205.8" font-family="Times,serif" font-size="14.00"> 46.29s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30->N27 --> | |
| <g id="edge4" class="edge"><title>N30->N27</title> | |
| <g id="a_edge4"><a xlink:title="main.queryClient -> github.com/blevesearch/bleve.(*indexImpl).Search (46.28s)"> | |
| <path fill="none" stroke="black" stroke-width="5" d="M888.254,-1147.76C888.254,-1133.98 888.254,-1114.4 888.254,-1098.47"/> | |
| <polygon fill="black" stroke="black" stroke-width="5" points="892.629,-1098.13 888.254,-1088.13 883.879,-1098.13 892.629,-1098.13"/> | |
| </a> | |
| </g> | |
| <g id="a_edge4-label"><a xlink:title="main.queryClient -> github.com/blevesearch/bleve.(*indexImpl).Search (46.28s)"> | |
| <text text-anchor="middle" x="908.478" y="-1117.8" font-family="Times,serif" font-size="14.00"> 46.28s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N31 --> | |
| <g id="node32" class="node"><title>N31</title> | |
| <g id="a_node32"><a xlink:title="runtime.(*mcache).refill (0.78s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="3083,-210 2989.51,-210 2989.51,-174 3083,-174 3083,-210"/> | |
| <text text-anchor="middle" x="3036.25" y="-193.6" font-family="Times,serif" font-size="8.00">runtime.(*mcache).refill</text> | |
| <text text-anchor="middle" x="3036.25" y="-185.6" font-family="Times,serif" font-size="8.00">0 of 0.78s(1.53%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32 --> | |
| <g id="node33" class="node"><title>N32</title> | |
| <g id="a_node33"><a xlink:title="runtime.(*mcentral).cacheSpan (0.78s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="3094.65,-124 2977.85,-124 2977.85,-88 3094.65,-88 3094.65,-124"/> | |
| <text text-anchor="middle" x="3036.25" y="-107.6" font-family="Times,serif" font-size="8.00">runtime.(*mcentral).cacheSpan</text> | |
| <text text-anchor="middle" x="3036.25" y="-99.6" font-family="Times,serif" font-size="8.00">0 of 0.78s(1.53%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N31->N32 --> | |
| <g id="edge28" class="edge"><title>N31->N32</title> | |
| <g id="a_edge28"><a xlink:title="runtime.(*mcache).refill -> runtime.(*mcentral).cacheSpan (0.78s)"> | |
| <path fill="none" stroke="black" d="M3036.25,-173.595C3036.25,-162.257 3036.25,-147.227 3036.25,-134.315"/> | |
| <polygon fill="black" stroke="black" points="3039.75,-134.095 3036.25,-124.095 3032.75,-134.095 3039.75,-134.095"/> | |
| </a> | |
| </g> | |
| <g id="a_edge28-label"><a xlink:title="runtime.(*mcache).refill -> runtime.(*mcentral).cacheSpan (0.78s)"> | |
| <text text-anchor="middle" x="3052.98" y="-144.8" font-family="Times,serif" font-size="14.00"> 0.78s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32->N20 --> | |
| <g id="edge29" class="edge"><title>N32->N20</title> | |
| <g id="a_edge29"><a xlink:title="runtime.(*mcentral).cacheSpan -> runtime.(*mcentral).grow (0.78s)"> | |
| <path fill="none" stroke="black" d="M3036.25,-87.799C3036.25,-76.5052 3036.25,-61.4639 3036.25,-48.4184"/> | |
| <polygon fill="black" stroke="black" points="3039.75,-48.0555 3036.25,-38.0556 3032.75,-48.0556 3039.75,-48.0555"/> | |
| </a> | |
| </g> | |
| <g id="a_edge29-label"><a xlink:title="runtime.(*mcentral).cacheSpan -> runtime.(*mcentral).grow (0.78s)"> | |
| <text text-anchor="middle" x="3052.98" y="-58.8" font-family="Times,serif" font-size="14.00"> 0.78s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33 --> | |
| <g id="node34" class="node"><title>N33</title> | |
| <g id="a_node34"><a xlink:title="runtime.goexit (46.46s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="929.024,-1423 847.484,-1423 847.484,-1387 929.024,-1387 929.024,-1423"/> | |
| <text text-anchor="middle" x="888.254" y="-1406.6" font-family="Times,serif" font-size="8.00">runtime.goexit</text> | |
| <text text-anchor="middle" x="888.254" y="-1398.6" font-family="Times,serif" font-size="8.00">0 of 46.46s(91.35%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33->N29 --> | |
| <g id="edge2" class="edge"><title>N33->N29</title> | |
| <g id="a_edge2"><a xlink:title="runtime.goexit -> main.main.func2 (46.29s)"> | |
| <path fill="none" stroke="black" stroke-width="5" d="M888.254,-1386.79C888.254,-1360.91 888.254,-1311.73 888.254,-1281.03"/> | |
| <polygon fill="black" stroke="black" stroke-width="5" points="892.629,-1281.01 888.254,-1271.01 883.879,-1281.01 892.629,-1281.01"/> | |
| </a> | |
| </g> | |
| <g id="a_edge2-label"><a xlink:title="runtime.goexit -> main.main.func2 (46.29s)"> | |
| <text text-anchor="middle" x="908.478" y="-1291.8" font-family="Times,serif" font-size="14.00"> 46.29s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34->N31 --> | |
| <g id="edge30" class="edge"><title>N34->N31</title> | |
| <g id="a_edge30"><a xlink:title="runtime.mallocgc.func2 -> runtime.(*mcache).refill (0.77s)"> | |
| <path fill="none" stroke="black" d="M3036.25,-265.647C3036.25,-252.823 3036.25,-235.108 3036.25,-220.381"/> | |
| <polygon fill="black" stroke="black" points="3039.75,-220.3 3036.25,-210.3 3032.75,-220.3 3039.75,-220.3"/> | |
| </a> | |
| </g> | |
| <g id="a_edge30-label"><a xlink:title="runtime.mallocgc.func2 -> runtime.(*mcache).refill (0.77s)"> | |
| <text text-anchor="middle" x="3052.98" y="-230.8" font-family="Times,serif" font-size="14.00"> 0.77s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35 --> | |
| <g id="node36" class="node"><title>N35</title> | |
| <g id="a_node36"><a xlink:title="runtime.mstart (4.37s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1109.02,-1423 1035.48,-1423 1035.48,-1387 1109.02,-1387 1109.02,-1423"/> | |
| <text text-anchor="middle" x="1072.25" y="-1406.6" font-family="Times,serif" font-size="8.00">runtime.mstart</text> | |
| <text text-anchor="middle" x="1072.25" y="-1398.6" font-family="Times,serif" font-size="8.00">0 of 4.37s(8.59%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36 --> | |
| <g id="node37" class="node"><title>N36</title> | |
| <g id="a_node37"><a xlink:title="runtime.mstart1 (4.37s)"> | |
| <polygon fill="#f8f8f8" stroke="black" points="1109.02,-1271 1035.48,-1271 1035.48,-1235 1109.02,-1235 1109.02,-1271"/> | |
| <text text-anchor="middle" x="1072.25" y="-1254.6" font-family="Times,serif" font-size="8.00">runtime.mstart1</text> | |
| <text text-anchor="middle" x="1072.25" y="-1246.6" font-family="Times,serif" font-size="8.00">0 of 4.37s(8.59%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35->N36 --> | |
| <g id="edge13" class="edge"><title>N35->N36</title> | |
| <g id="a_edge13"><a xlink:title="runtime.mstart -> runtime.mstart1 (4.37s)"> | |
| <path fill="none" stroke="black" d="M1072.25,-1386.79C1072.25,-1360.91 1072.25,-1311.73 1072.25,-1281.03"/> | |
| <polygon fill="black" stroke="black" points="1075.75,-1281.01 1072.25,-1271.01 1068.75,-1281.01 1075.75,-1281.01"/> | |
| </a> | |
| </g> | |
| <g id="a_edge13-label"><a xlink:title="runtime.mstart -> runtime.mstart1 (4.37s)"> | |
| <text text-anchor="middle" x="1088.98" y="-1291.8" font-family="Times,serif" font-size="14.00"> 4.37s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36->N25 --> | |
| <g id="edge14" class="edge"><title>N36->N25</title> | |
| <g id="a_edge14"><a xlink:title="runtime.mstart1 -> runtime.sysmon (4.37s)"> | |
| <path fill="none" stroke="black" d="M1072.25,-1234.8C1072.25,-1223.51 1072.25,-1208.46 1072.25,-1195.42"/> | |
| <polygon fill="black" stroke="black" points="1075.75,-1195.06 1072.25,-1185.06 1068.75,-1195.06 1075.75,-1195.06"/> | |
| </a> | |
| </g> | |
| <g id="a_edge14-label"><a xlink:title="runtime.mstart1 -> runtime.sysmon (4.37s)"> | |
| <text text-anchor="middle" x="1088.98" y="-1205.8" font-family="Times,serif" font-size="14.00"> 4.37s</text> | |
| </a> | |
| </g> | |
| </g> | |
| </g> | |
| </g></svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment