Measuring/evaluating the performance in IE
I need to understand the report generate by the performance/profiling tab of chrome/internet explorer. The task is to find the possible memory leaks and architectural flaws in the application. My application loads perfectly fine in chrome and firefox but in internet explorer there's a humongous difference in performance.
For example, it takes around 3 second for a page to load in chrome and firefox and the same page takes 23 seconds to load in internet explorer
javascript performance google-chrome internet-explorer internet-explorer-11
add a comment |
I need to understand the report generate by the performance/profiling tab of chrome/internet explorer. The task is to find the possible memory leaks and architectural flaws in the application. My application loads perfectly fine in chrome and firefox but in internet explorer there's a humongous difference in performance.
For example, it takes around 3 second for a page to load in chrome and firefox and the same page takes 23 seconds to load in internet explorer
javascript performance google-chrome internet-explorer internet-explorer-11
add a comment |
I need to understand the report generate by the performance/profiling tab of chrome/internet explorer. The task is to find the possible memory leaks and architectural flaws in the application. My application loads perfectly fine in chrome and firefox but in internet explorer there's a humongous difference in performance.
For example, it takes around 3 second for a page to load in chrome and firefox and the same page takes 23 seconds to load in internet explorer
javascript performance google-chrome internet-explorer internet-explorer-11
I need to understand the report generate by the performance/profiling tab of chrome/internet explorer. The task is to find the possible memory leaks and architectural flaws in the application. My application loads perfectly fine in chrome and firefox but in internet explorer there's a humongous difference in performance.
For example, it takes around 3 second for a page to load in chrome and firefox and the same page takes 23 seconds to load in internet explorer
javascript performance google-chrome internet-explorer internet-explorer-11
javascript performance google-chrome internet-explorer internet-explorer-11
edited Nov 16 '18 at 10:44
Pragam Shrivastava
asked Nov 15 '18 at 6:19
Pragam ShrivastavaPragam Shrivastava
6732818
6732818
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I suggest you to run the new profiling session from the memory tab and take snapshot of it.
Then try to import the other snapshot and try to compare it.
Generally, the developer tools in IE and Edge provides the similar functionality.
I try to find the documentation for IE developer tools which have basic details.
So you can try to refer the link below which is for Edge to get more information about it.
Memory Tab (Developer tools)
I am looking at the same place but I am finding it hard to get the meaning out of the report that I am getting. I need to identify the places to improve the application performance in internet explorer as it is running good in all the browser. e.g. it takes 3 seconds to load in chrome compare to IE's 23 sec
– Pragam Shrivastava
Nov 16 '18 at 10:38
Many other things can affect the performance. Like which type of contents, scripts, graphics, data you are trying to load in browser. Each browser has its own engine which have different performance ratio. So you also need to check those things. Besides that you can refer the documentation link and try to understand the features and functionality of it may help you to find the issue.
– Deepak-MSFT
Nov 19 '18 at 8:05
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53313525%2fmeasuring-evaluating-the-performance-in-ie%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I suggest you to run the new profiling session from the memory tab and take snapshot of it.
Then try to import the other snapshot and try to compare it.
Generally, the developer tools in IE and Edge provides the similar functionality.
I try to find the documentation for IE developer tools which have basic details.
So you can try to refer the link below which is for Edge to get more information about it.
Memory Tab (Developer tools)
I am looking at the same place but I am finding it hard to get the meaning out of the report that I am getting. I need to identify the places to improve the application performance in internet explorer as it is running good in all the browser. e.g. it takes 3 seconds to load in chrome compare to IE's 23 sec
– Pragam Shrivastava
Nov 16 '18 at 10:38
Many other things can affect the performance. Like which type of contents, scripts, graphics, data you are trying to load in browser. Each browser has its own engine which have different performance ratio. So you also need to check those things. Besides that you can refer the documentation link and try to understand the features and functionality of it may help you to find the issue.
– Deepak-MSFT
Nov 19 '18 at 8:05
add a comment |
I suggest you to run the new profiling session from the memory tab and take snapshot of it.
Then try to import the other snapshot and try to compare it.
Generally, the developer tools in IE and Edge provides the similar functionality.
I try to find the documentation for IE developer tools which have basic details.
So you can try to refer the link below which is for Edge to get more information about it.
Memory Tab (Developer tools)
I am looking at the same place but I am finding it hard to get the meaning out of the report that I am getting. I need to identify the places to improve the application performance in internet explorer as it is running good in all the browser. e.g. it takes 3 seconds to load in chrome compare to IE's 23 sec
– Pragam Shrivastava
Nov 16 '18 at 10:38
Many other things can affect the performance. Like which type of contents, scripts, graphics, data you are trying to load in browser. Each browser has its own engine which have different performance ratio. So you also need to check those things. Besides that you can refer the documentation link and try to understand the features and functionality of it may help you to find the issue.
– Deepak-MSFT
Nov 19 '18 at 8:05
add a comment |
I suggest you to run the new profiling session from the memory tab and take snapshot of it.
Then try to import the other snapshot and try to compare it.
Generally, the developer tools in IE and Edge provides the similar functionality.
I try to find the documentation for IE developer tools which have basic details.
So you can try to refer the link below which is for Edge to get more information about it.
Memory Tab (Developer tools)
I suggest you to run the new profiling session from the memory tab and take snapshot of it.
Then try to import the other snapshot and try to compare it.
Generally, the developer tools in IE and Edge provides the similar functionality.
I try to find the documentation for IE developer tools which have basic details.
So you can try to refer the link below which is for Edge to get more information about it.
Memory Tab (Developer tools)
answered Nov 16 '18 at 5:29
Deepak-MSFTDeepak-MSFT
974116
974116
I am looking at the same place but I am finding it hard to get the meaning out of the report that I am getting. I need to identify the places to improve the application performance in internet explorer as it is running good in all the browser. e.g. it takes 3 seconds to load in chrome compare to IE's 23 sec
– Pragam Shrivastava
Nov 16 '18 at 10:38
Many other things can affect the performance. Like which type of contents, scripts, graphics, data you are trying to load in browser. Each browser has its own engine which have different performance ratio. So you also need to check those things. Besides that you can refer the documentation link and try to understand the features and functionality of it may help you to find the issue.
– Deepak-MSFT
Nov 19 '18 at 8:05
add a comment |
I am looking at the same place but I am finding it hard to get the meaning out of the report that I am getting. I need to identify the places to improve the application performance in internet explorer as it is running good in all the browser. e.g. it takes 3 seconds to load in chrome compare to IE's 23 sec
– Pragam Shrivastava
Nov 16 '18 at 10:38
Many other things can affect the performance. Like which type of contents, scripts, graphics, data you are trying to load in browser. Each browser has its own engine which have different performance ratio. So you also need to check those things. Besides that you can refer the documentation link and try to understand the features and functionality of it may help you to find the issue.
– Deepak-MSFT
Nov 19 '18 at 8:05
I am looking at the same place but I am finding it hard to get the meaning out of the report that I am getting. I need to identify the places to improve the application performance in internet explorer as it is running good in all the browser. e.g. it takes 3 seconds to load in chrome compare to IE's 23 sec
– Pragam Shrivastava
Nov 16 '18 at 10:38
I am looking at the same place but I am finding it hard to get the meaning out of the report that I am getting. I need to identify the places to improve the application performance in internet explorer as it is running good in all the browser. e.g. it takes 3 seconds to load in chrome compare to IE's 23 sec
– Pragam Shrivastava
Nov 16 '18 at 10:38
Many other things can affect the performance. Like which type of contents, scripts, graphics, data you are trying to load in browser. Each browser has its own engine which have different performance ratio. So you also need to check those things. Besides that you can refer the documentation link and try to understand the features and functionality of it may help you to find the issue.
– Deepak-MSFT
Nov 19 '18 at 8:05
Many other things can affect the performance. Like which type of contents, scripts, graphics, data you are trying to load in browser. Each browser has its own engine which have different performance ratio. So you also need to check those things. Besides that you can refer the documentation link and try to understand the features and functionality of it may help you to find the issue.
– Deepak-MSFT
Nov 19 '18 at 8:05
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53313525%2fmeasuring-evaluating-the-performance-in-ie%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown