RangeError: Maximum call stack size exceeded
at Console.(anonymous function) (internal/console/constructor.js:243:9)
at Console.log (internal/console/constructor.js:283:24)
at Logger.log ($:/core/modules/utils/logger.js:32:25)
at Syncer.dispatchTask ($:/core/modules/syncer.js:515:15)
at Syncer.processTaskQueue ($:/core/modules/syncer.js:437:9)
at $:/core/modules/syncer.js:445:27
at $:/core/modules/syncer.js:525:4
at FileSystemAdaptor.loadTiddler ($:/plugins/tiddlywiki/filesystem/filesystemadaptor.js:193:2)
at Syncer.dispatchTask ($:/core/modules/syncer.js:516:20)
at Syncer.processTaskQueue ($:/core/modules/syncer.js:437:9)
created: 20190603094535523
modified: 20190603094535523
tags: t-0
title: a-0-0
type: text/vnd.tiddlywiki
123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789
--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/cdbfa07c-80bd-4ed9-b378-242ab9180f02%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddl...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/c320a3b8-3d90-4bfd-8135-9d7518f0111b%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddl...@googlegroups.com.
Should I open a Github issue?
--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/6cc309c6-7c3e-459c-b41c-c15074bc134f%40googlegroups.com.
Hi SolexThis isn’t actually a bug, it’s more of an unexpected consequence of the way that lazy loading is implemented: in client-server mode, if the browser references a skinny tiddler (one that lacks a text field) then it requests the body from the server. It’ll only do it once for each tiddler but in a case like this with thousands of skinny tiddlers it looks like it can overload the server.Best wishesJeremy.
On 4 Jun 2019, at 12:44, @TiddlyTweeter <Tiddly...@assays.tv> wrote:
Great bit of collective detective work in this thread!YES, GitHub is the way to go.Also, once written (I assume as an "Issue", but maybe its almost a "PR" a writer here could polish?) you can ask back in this thread for "upvotes" to it so folk can indicate its importance.Best wishesJosiah
On Tuesday, 4 June 2019 12:36:02 UTC+2, solex wrote:What is the proper way to submit a bug? Should I open a Github issue?--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddl...@googlegroups.com.
A question. Rather than adding newlines to text, adding nothing but actually something in each tiddler and thus defeating the possibility of using the filter [all[current]has[text]] to test if text has content.
Would populating a field in each tiddler do the same? or must it be the text field?
If you must use the text field perhaps insert something like "batch creation: batchname", then you could list items with a text field with prefix[batch creation:] or prefix[batch creation:batchname] if you needed to identify thousands for batch deletion.
Regards
Tony
This isn’t actually a bug, it’s more of an unexpected consequence of the way that lazy loading is implemented: in client-server mode, if the browser references a skinny tiddler (one that lacks a text field) then it requests the body from the server.
My answer to your question is
Should you need to as a workaround
However depending on how the tiddlers are to be used it may provide additional functionality.
More directly the problem at hand its suggested it relates to skinny tiddler handling. A feature one may want everyday but which tests resources in large batches. If its a code bug we fix it, if its external in node perhaps simply a short or configurable pause every 1000 tiddlers could be sufficient.
Regards
Tony