Delete specific blob data or clear out all stored blob data entirely with JS












0















In my app there is the ability to generate PDFs. The library I am using doesn't dispose of them after they are created and download. Eventually, after generating enough PDFs, the stored blob data becomes so large that it crashes the browser.



One solution would be to refresh the browser after print. That would really screw up the user experience though because they would lose their current print parameters.



The solution to that would be to store the print parameters in sessionStorage or something so that they are restored when a refresh is done.



At any rate, the easiest solution to implement would be just to clear out the specific blob data, or clear all blob data, once the print is done.



This is what I am seeing chrome://blob-internals. The first item is what I want to delete; the two items below the line are just URL references to the blob.



How do I clear this out either specifically or just clearing out all blobs in Javascipt?



enter image description here



Tried to do the following:



handleDownload(filename, blob, url, e) {
e.preventDefault();
saveAs(blob, filename);
this.props.pdfPrint(false);
delete blob;
}


But this gives a Deleting local variable in strict mode error. Tried to:



handleDownload(filename, blob, url, e) {
e.preventDefault();
saveAs(blob, filename);
this.props.pdfPrint(false);
URL.revokeObjectURL(url);
var test = {};
test = blob
delete test.blob;
}


Which just deletes one of the references to the blob, but not the blob it self.



In reading this, all references need to be removed first:



https://stackoverflow.com/a/22899690/3123109










share|improve this question





























    0















    In my app there is the ability to generate PDFs. The library I am using doesn't dispose of them after they are created and download. Eventually, after generating enough PDFs, the stored blob data becomes so large that it crashes the browser.



    One solution would be to refresh the browser after print. That would really screw up the user experience though because they would lose their current print parameters.



    The solution to that would be to store the print parameters in sessionStorage or something so that they are restored when a refresh is done.



    At any rate, the easiest solution to implement would be just to clear out the specific blob data, or clear all blob data, once the print is done.



    This is what I am seeing chrome://blob-internals. The first item is what I want to delete; the two items below the line are just URL references to the blob.



    How do I clear this out either specifically or just clearing out all blobs in Javascipt?



    enter image description here



    Tried to do the following:



    handleDownload(filename, blob, url, e) {
    e.preventDefault();
    saveAs(blob, filename);
    this.props.pdfPrint(false);
    delete blob;
    }


    But this gives a Deleting local variable in strict mode error. Tried to:



    handleDownload(filename, blob, url, e) {
    e.preventDefault();
    saveAs(blob, filename);
    this.props.pdfPrint(false);
    URL.revokeObjectURL(url);
    var test = {};
    test = blob
    delete test.blob;
    }


    Which just deletes one of the references to the blob, but not the blob it self.



    In reading this, all references need to be removed first:



    https://stackoverflow.com/a/22899690/3123109










    share|improve this question



























      0












      0








      0


      1






      In my app there is the ability to generate PDFs. The library I am using doesn't dispose of them after they are created and download. Eventually, after generating enough PDFs, the stored blob data becomes so large that it crashes the browser.



      One solution would be to refresh the browser after print. That would really screw up the user experience though because they would lose their current print parameters.



      The solution to that would be to store the print parameters in sessionStorage or something so that they are restored when a refresh is done.



      At any rate, the easiest solution to implement would be just to clear out the specific blob data, or clear all blob data, once the print is done.



      This is what I am seeing chrome://blob-internals. The first item is what I want to delete; the two items below the line are just URL references to the blob.



      How do I clear this out either specifically or just clearing out all blobs in Javascipt?



      enter image description here



      Tried to do the following:



      handleDownload(filename, blob, url, e) {
      e.preventDefault();
      saveAs(blob, filename);
      this.props.pdfPrint(false);
      delete blob;
      }


      But this gives a Deleting local variable in strict mode error. Tried to:



      handleDownload(filename, blob, url, e) {
      e.preventDefault();
      saveAs(blob, filename);
      this.props.pdfPrint(false);
      URL.revokeObjectURL(url);
      var test = {};
      test = blob
      delete test.blob;
      }


      Which just deletes one of the references to the blob, but not the blob it self.



      In reading this, all references need to be removed first:



      https://stackoverflow.com/a/22899690/3123109










      share|improve this question
















      In my app there is the ability to generate PDFs. The library I am using doesn't dispose of them after they are created and download. Eventually, after generating enough PDFs, the stored blob data becomes so large that it crashes the browser.



      One solution would be to refresh the browser after print. That would really screw up the user experience though because they would lose their current print parameters.



      The solution to that would be to store the print parameters in sessionStorage or something so that they are restored when a refresh is done.



      At any rate, the easiest solution to implement would be just to clear out the specific blob data, or clear all blob data, once the print is done.



      This is what I am seeing chrome://blob-internals. The first item is what I want to delete; the two items below the line are just URL references to the blob.



      How do I clear this out either specifically or just clearing out all blobs in Javascipt?



      enter image description here



      Tried to do the following:



      handleDownload(filename, blob, url, e) {
      e.preventDefault();
      saveAs(blob, filename);
      this.props.pdfPrint(false);
      delete blob;
      }


      But this gives a Deleting local variable in strict mode error. Tried to:



      handleDownload(filename, blob, url, e) {
      e.preventDefault();
      saveAs(blob, filename);
      this.props.pdfPrint(false);
      URL.revokeObjectURL(url);
      var test = {};
      test = blob
      delete test.blob;
      }


      Which just deletes one of the references to the blob, but not the blob it self.



      In reading this, all references need to be removed first:



      https://stackoverflow.com/a/22899690/3123109







      javascript blob






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 21 '18 at 17:41







      sockpuppet

















      asked Nov 21 '18 at 17:24









      sockpuppetsockpuppet

      1,55441933




      1,55441933
























          0






          active

          oldest

          votes











          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
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53417549%2fdelete-specific-blob-data-or-clear-out-all-stored-blob-data-entirely-with-js%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53417549%2fdelete-specific-blob-data-or-clear-out-all-stored-blob-data-entirely-with-js%23new-answer', 'question_page');
          }
          );

          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







          Popular posts from this blog

          Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

          ComboBox Display Member on multiple fields

          Is it possible to collect Nectar points via Trainline?