You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 5, 2019. It is now read-only.
Hello,
I am running ank against some documentation I wrote. I am seeing runAnk take 20+ minutes and pegging one processor. I killed the process around 28:30.
Through process of elimination, I determined that the specific code block contains a data class which inherits from its members via by.
data classAppTroupe(valsqlTroupe:SqlTroupe, valqueuePublishTroupe:QueuePublishTroupe, valserializeTroupe:SerializeTroupe):
SqlTroupe by sqlTroupe,
QueuePublishTroupe by queuePublishTroupe,
SerializeTroupe by serializeTroupe
I am working around this by excluding the code with by from ank. I've pushed the fix to a branch in my respository for the sake of an example.
I don't yet know the full scope of this issue.
The text was updated successfully, but these errors were encountered:
dgoetsch
changed the title
Ank very slow when by keyword is used with data class
Ank build very slow
Jun 27, 2018
dgoetsch
changed the title
Ank build very slow
Ank build very slow under some circumstances
Jun 27, 2018
Do you have any coroutines code inside the snippet, or anything asynchronous or with many sub-scopes? We've seen that causing issues before because it has to be rewritten and interpreted on the fly.
I have to comment that this isn't necessarily blocked by Ank work, but rather on the underlying interpreter that sadly we don't control. As it improves, so will Ank improve with it :D
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
I am running ank against some documentation I wrote. I am seeing
runAnk
take 20+ minutes and pegging one processor. I killed the process around28:30
.Through process of elimination, I determined that the specific code block contains a
data class
which inherits from its members viaby
.I am working around this by excluding the code with
by
from ank. I've pushed the fix to a branch in my respository for the sake of an example.I don't yet know the full scope of this issue.
The text was updated successfully, but these errors were encountered: