Hi all,
I’ve noticed recently that SuperCollider is taking up a lot of memory on my computer (experiencing leaks up to 30+gb). This memory leak issue persists even if I reboot the interpreter. In fact, I often notice this happening in situations where I quit the interpreter and left the IDE open, closed my computer, and then reopened my computer after some time has passed. Only rebooting the IDE seems to resolve the issue.
I think if the issue is with my code, it’s probably somewhere in a large class I wrote that is like 3.5k lines and probably not debuggable here. To my knowledge my class is not doing anything that should accumulate this much memory; it’s mostly array and list stuff, plus some methods for creating synths and setting their parameters with dictionaries. Since memory accumulates so gradually, I haven’t been able to pinpoint the precise source of the issue.
Has anyone else experienced large memory issues in SC? My technical + conceptual background on this aspect of programming in general is not strong, so I’d also appreciate suggestions for resources that I should look into to better understand what is happening under the hood.
Running Mac OS 26.2.
Best,
Jack
josh
April 20, 2026, 12:51am
2
I haven’t noticed this myself, but I would try taking the class out of your library and running without it for a day or two to see if the problem goes away. If it does, we know where to look next - if it doesn’t, then we can narrow it down to an SC problem.
Hope that helps.
/*
Josh Parmenter
www.realizedsound.net/josh
*/
Next question: In Task Manager, which SC process is consuming excessive memory?
Based on your description, I’d have to bet that it’s scide.exe and not sclang.exe.
When you reboot the interpreter, the sclang.exe process exits. At that point, all of its memory should be released back to the OS. If sclang is consuming 30GB and it quits, and if at that point the memory is not released, that would be a Windows bug (which tbh is not out of the question) – although that’s extremely low probability, since memory bugs in an OS are severe by definition and would get a lot of scrutiny.
If the memory sticks around while the IDE is open, even without the interpreter running, and is released when quitting the IDE, the Occam’s Razor explanation would be that the IDE is leaking memory.
In that case, troubleshooting classes would not be useful.
Could you confirm that? After that, I guess file a bug report in the SC repository.
hjh
Hi Josh - I’ll try that soon. I will say though that I’m pretty close to positive it has something to do with the class. The issue slowly builds up while I am using my patches that incorporate the class, and I haven’t noticed it being an issue when I am working on patches where I don’t incorporate the class. That being said, I could have missed something, so I’ll give it a go.
Best,
Jack
Hi - working on Mac here. In Activity Monitor there are two processes for Supercollider: one for sclang and one that just says Contents/MacOS/Supercollider that I would assume is the IDE process. The sclang process takes up the usual ~200mb. Rebooting the interpreter definitely does not clear the memory use (for the IDE process).
I’d love to believe it’s not the class. I know logically it really shouldn’t have anything to do with it, but for some reason the memory use climbs specifically when I am using it. Even since posting this, as I’ve been working on my patch Supercollider has accumulated 6gb. That being said, it’s possible that I haven’t been paying enough attention to memory usage in situations where I’ve worked on other stuff, and all SuperCollider activity is causing it to climb.
manifesto-sauce:
working on Mac here
Ah, I saw unstable behavior and assumed Windows
Sclang is the process that’s responsible for running your class. If sclang isn’t chewing memory, then the probability of the problem arising from running your class is basically zero.
If it were me, I’d look into memory profiling on scide. I’m not familiar with those tools but I bet someone else here can give more details.
What is odd here is that if it were a general bug, a lot of users would be complaining. So there could be something environmental, or perhaps some broken characters in a file that causes it to spin out, or something.
Does Activity Monitor show whether the large memory use is resident in RAM or total allocation? In Linux, “RSS” (resident set size) measures actual RAM usage. It’s not unusual for a process to allocate more memory than is currently occupying RAM. (30GB is still a lot, though.)
hjh
prko
April 20, 2026, 4:48am
7
On my end (macOS 15.7.5, m1max), SC-IDE (3.15.0-dev) uses currently about 14 GB of memory:
Open Files and Ports
/
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/MacOS/SuperCollider
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtConcurrent.framework/Versions/A/QtConcurrent
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebChannel.framework/Versions/A/QtWebChannel
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtQuickWidgets.framework/Versions/A/QtQuickWidgets
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebEngineWidgets.framework/Versions/A/QtWebEngineWidgets
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtPositioning.framework/Versions/A/QtPositioning
/usr/lib/dyld
/Library/Preferences/Logging/.plist-cache.qvKk8qs9
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebSockets.framework/Versions/A/QtWebSockets
/System/Library/CoreServices/SystemVersion.bundle/English.lproj/SystemVersion.strings
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtPrintSupport.framework/Versions/A/QtPrintSupport
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtQmlModels.framework/Versions/A/QtQmlModels
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtQml.framework/Versions/A/QtQml
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtOpenGL.framework/Versions/A/QtOpenGL
/System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/SystemAppearance.car
/System/Library/Input Methods/KoreanIM.app/Contents/PlugIns/KIM_Extension.appex/Contents/Resources/InfoPlist.loctable
/System/Library/Frameworks/Security.framework/Versions/A/PlugIns/csparser.bundle/Contents/MacOS/csparser
/System/Library/Caches/com.apple.IntlDataCache.le.kbdx
/System/Library/Keyboard Layouts/AppleKeyboardLayouts.bundle/Contents/Resources/InfoPlist.loctable
/private/var/db/timezone/tz/2025c.1.0/icutz/icutz44l.dat
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtDBus.framework/Versions/A/QtDBus
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/PlugIns/platforms/libqcocoa.dylib
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtQuick.framework/Versions/A/QtQuick
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtGui.framework/Versions/A/QtGui
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtNetwork.framework/Versions/A/QtNetwork
/System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/FauxVibrantLight.car
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWidgets.framework/Versions/A/QtWidgets
/System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/Aqua.car
/System/Library/Keyboard Layouts/AppleKeyboardLayouts.bundle/Contents/Resources/AppleKeyboardLayouts-L.dat
/usr/lib/libobjc-trampolines.dylib
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Common.loctable
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Resources/translations/scide.qm
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Resources/translations/scide_de.qm
/Library/Caches/com.apple.iconservices.store/0EAAA3F7-23B0-3466-BB4F-98457704D31D.isdata
/Library/Caches/com.apple.iconservices.store/119A26F2-4374-3EEC-B36A-539FA8B1257B.isdata
/Library/Caches/com.apple.iconservices.store/2BA09E9D-5C16-3A98-A7B8-29FD09709569.isdata
/Library/Caches/com.apple.iconservices.store/7A08C49F-0147-3645-A8A8-EF4FB1E04DC9.isdata
/private/var/db/analyticsd/events.allowlist
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/PlugIns/styles/libqmacstyle.dylib
/Library/Caches/com.apple.iconservices.store/74CD7350-8EEF-33CD-BEFF-27D2E88A5AD2.isdata
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/PlugIns/imageformats/libqgif.dylib
/Users/prko/Dropbox/prko/_myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/PlugIns/imageformats/libqico.dylib
/Users/prko/Dropbox/prko/myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtCore.framework/Versions/A/QtCore
/usr/share/icu/icudt76l.dat
/System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/VibrantLight.car
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/GPUCache/data_0
/Library/Caches/com.apple.iconservices.store/7EBFA46F-9137-3872-85EA-7CA2D852289E.isdata
/private/var/folders/2 /hdf9s2tx6kg7_yqv0bwqtlcm0000gn/C/com.apple.scriptmanager2.le.cache
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/GPUCache/data_1
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/WebStorage/QuotaManager
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/GPUCache/data_2
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/databases/Databases.db
/System/Library/Fonts/SFHebrew.ttf
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/GPUCache/data_3
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/DawnCache/data_0
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/DawnCache/data_1
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/DawnCache/data_2
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/DawnCache/data_3
/System/Library/Fonts/Supplemental/Lao Sangam MN.ttf
/System/Library/Fonts/SFGeorgian.ttf
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/SavePanel.loctable
/private/var/folders/2 /hdf9s2tx6kg7_yqv0bwqtlcm0000gn/C/net.sourceforge.supercollider/com.apple.metal/16777235_530/functions.data
/System/Library/Fonts/ThonburiUI.ttc
/System/Library/Fonts/Supplemental/Ayuthaya.ttf
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Assets.car
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/GPUCache/index
/Library/Caches/com.apple.iconservices.store/726F5853-8A35-320C-9423-54BB5FE199BE.isdata
/System/Library/Fonts/Supplemental/Khmer Sangam MN.ttf
/System/Library/Fonts/Supplemental/Malayalam Sangam MN.ttc
/System/Library/Fonts/SFArmenian.ttf
/System/Library/Fonts/NotoSansArmenian.ttc
/private/var/folders/2 /hdf9s2tx6kg7_yqv0bwqtlcm0000gn/C/com.apple.iconservices/store.index
/System/Library/Fonts/NotoSansOriya.ttc
/System/Library/Frameworks/Foundation.framework/Versions/C/Resources/FoundationErrors.loctable
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/PlugIns/imageformats/libqsvg.dylib
/System/Library/Fonts/SFNSItalic.ttf
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/InputManager.loctable
/System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/Assets.car
/System/Library/Fonts/SFNS.ttf
/System/Library/Fonts/Menlo.ttc
/System/Library/Fonts/Helvetica.ttc
/System/Library/Fonts/Supplemental/Courier New Italic.ttf
/System/Library/Fonts/Monaco.ttf
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/A/Resources/qtwebengine_resources_100p.pak
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/A/Resources/qtwebengine_resources_200p.pak
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/A/Resources/qtwebengine_locales/en-GB.pak
/System/Library/Fonts/Supplemental/Kefa.ttc
/Library/Caches/com.apple.iconservices.store/29710FD0-FAD0-3C1E-9D07-C3F942C598AC.isdata
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/PlugIns/imageformats/libqjpeg.dylib
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtSvg.framework/Versions/A/QtSvg
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/DictationManager.loctable
/System/Library/Extensions/AGXMetalG13X.bundle/Contents/Resources/ds.g13s
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/A/Resources/qtwebengine_resources.pak
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/History
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/A/Resources/icudtl.dat
/System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/DarkAqua.car
/System/Library/Extensions/AGXMetalG13X.bundle/Contents/MacOS/AGXMetalG13X
/System/Library/Fonts/Supplemental/Times New Roman.ttf
/System/Library/Fonts/Apple Symbols.ttf
/System/Library/Fonts/Supplemental/Apple Chancery.ttf
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Favicons
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/MenuCommands.loctable
/System/Library/Extensions/AppleMetalOpenGLRenderer.bundle/Contents/MacOS/AppleMetalOpenGLRenderer
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/A/Resources/qtwebengine_devtools_resources.pak
/private/var/db/mds/messages/501/se_SecurityMessages
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/DawnCache/index
/Users/prko/Dropbox/prko/myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/A/QtWebEngineCore
/System/Library/Fonts/Supplemental/Courier New.ttf
/System/Library/Fonts/Supplemental/Tamil Sangam MN.ttc
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Trust Tokens
/private/var/folders/2 /hdf9s2tx6kg7_yqv0bwqtlcm0000gn/C/net.sourceforge.supercollider/com.apple.metal/32024/libraries.data
/System/Volumes/Preboot/Cryptexes/App/System/Applications/Safari.app/Contents/Resources/en.lproj/ServicesMenu.strings
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Services.loctable
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/FunctionKeyNames.loctable
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Menus.loctable
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Cookies
/System/Library/Fonts/Supplemental/Galvji.ttc
/System/Library/Fonts/Supplemental/Courier New Bold Italic.ttf
/System/Library/Fonts/Supplemental/Courier New Bold.ttf
/System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Resources/Localizable.loctable
/System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Resources/SearchManager2.loctable
/System/Library/Fonts/LastResort.otf
/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Accessibility.loctable
/System/Library/Fonts/Keyboard.ttf
/System/Library/Fonts/SFArabic.ttf
/System/Library/Fonts/Supplemental/Kokonor.ttf
/System/Library/Fonts/GeezaPro.ttc
/System/Library/Fonts/KohinoorGujarati.ttc
/System/Library/Fonts/NotoNastaliq.ttc
/System/Library/Fonts/Supplemental/EuphemiaCAS.ttc
/System/Library/Fonts/NotoSansMyanmar.ttc
/System/Library/Fonts/KohinoorBangla.ttc
/System/Library/Fonts/LucidaGrande.ttc
/System/Library/Fonts/MuktaMahee.ttc
/System/Library/Fonts/\xe3\x83\x92\xe3\x83\xa9\xe3\x82\xad\xe3\x82\x99\xe3\x83\x8e\xe8\xa7\x92\xe3\x82\xb3\xe3\x82\x99\xe3\x82\xb7\xe3\x83\x83\xe3\x82\xaf W0.ttc
/System/Library/Fonts/\xe3\x83\x92\xe3\x83\xa9\xe3\x82\xad\xe3\x82\x99\xe3\x83\x8e\xe8\xa7\x92\xe3\x82\xb3\xe3\x82\x99\xe3\x82\xb7\xe3\x83\x83\xe3\x82\xaf W7.ttc
/System/Library/Fonts/Kohinoor.ttc
/System/Library/Fonts/ZitherIndia.otf
/System/Library/Fonts/\xe3\x83\x92\xe3\x83\xa9\xe3\x82\xad\xe3\x82\x99\xe3\x83\x8e\xe8\xa7\x92\xe3\x82\xb3\xe3\x82\x99\xe3\x82\xb7\xe3\x83\x83\xe3\x82\xaf W1.ttc
/System/Library/Fonts/Supplemental/Sinhala Sangam MN.ttc
/System/Library/Fonts/KohinoorTelugu.ttc
/System/Library/Fonts/NotoSansKannada.ttc
/System/Library/Fonts/Supplemental/STIXTwoMath.otf
/System/Library/PrivateFrameworks/SFSymbols.framework/Versions/A/Resources/CoreGlyphs.bundle/Contents/Resources/Assets.car
/System/Library/Fonts/\xe3\x83\x92\xe3\x83\xa9\xe3\x82\xad\xe3\x82\x99\xe3\x83\x8e\xe8\xa7\x92\xe3\x82\xb3\xe3\x82\x99\xe3\x82\xb7\xe3\x83\x83\xe3\x82\xaf W2.ttc
/System/Library/Fonts/\xe3\x83\x92\xe3\x83\xa9\xe3\x82\xad\xe3\x82\x99\xe3\x83\x8e\xe8\xa7\x92\xe3\x82\xb3\xe3\x82\x99\xe3\x82\xb7\xe3\x83\x83\xe3\x82\xaf W3.ttc
/System/Library/Fonts/Supplemental/Kailasa.ttc
/System/Library/Fonts/HelveticaNeue.ttc
/System/Library/Fonts/\xe3\x83\x92\xe3\x83\xa9\xe3\x82\xad\xe3\x82\x99\xe3\x83\x8e\xe8\xa7\x92\xe3\x82\xb3\xe3\x82\x99\xe3\x82\xb7\xe3\x83\x83\xe3\x82\xaf W8.ttc
/System/Library/Fonts/\xe3\x83\x92\xe3\x83\xa9\xe3\x82\xad\xe3\x82\x99\xe3\x83\x8e\xe8\xa7\x92\xe3\x82\xb3\xe3\x82\x99\xe3\x82\xb7\xe3\x83\x83\xe3\x82\xaf W9.ttc
/System/Library/Fonts/\xe3\x83\x92\xe3\x83\xa9\xe3\x82\xad\xe3\x82\x99\xe3\x83\x8e\xe8\xa7\x92\xe3\x82\xb3\xe3\x82\x99\xe3\x82\xb7\xe3\x83\x83\xe3\x82\xaf W4.ttc
/System/Library/Fonts/\xe3\x83\x92\xe3\x83\xa9\xe3\x82\xad\xe3\x82\x99\xe3\x83\x8e\xe8\xa7\x92\xe3\x82\xb3\xe3\x82\x99\xe3\x82\xb7\xe3\x83\x83\xe3\x82\xaf W5.ttc
/System/Library/Fonts/\xe3\x83\x92\xe3\x83\xa9\xe3\x82\xad\xe3\x82\x99\xe3\x83\x8e\xe8\xa7\x92\xe3\x82\xb3\xe3\x82\x99\xe3\x82\xb7\xe3\x83\x83\xe3\x82\xaf W6.ttc
/System/Library/PrivateFrameworks/SFSymbols.framework/Versions/A/Resources/CoreGlyphsPrivate.bundle/Contents/Resources/Assets.car
/System/Library/Fonts/AppleSDGothicNeo.ttc
/System/Library/Fonts/Apple Color Emoji.ttc
/System/Library/Fonts/Hiragino Sans GB.ttc
/System/Library/Fonts/Supplemental/Arial Unicode.ttf
/System/Library/AssetsV2/com_apple_MobileAsset_Font7/3419f2a427639ad8c8e139149a287865a90fa17e.asset/AssetData/PingFang.ttc
/System/Library/PrivateFrameworks/FontServices.framework/Versions/A/Resources/Reserved/PingFangUI.ttc
/dev/null
/dev/null
/dev/null
/private/var/folders/2 /hdf9s2tx6kg7_yqv0bwqtlcm0000gn/T/SuperColliderIDE_Singleton_0
->0x1ac4c1b3fe0e949f
->0xb3c194611b177684
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/A/Resources/icudtl.dat
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/A/Resources/qtwebengine_resources_100p.pak
/Users/prko/Dropbox/prko/__myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/A/Resources/qtwebengine_resources_200p.pak
/Users/prko/Dropbox/prko/myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/A/Resources/qtwebengine_resources.pak
/Users/prko/Dropbox/prko/myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/A/Resources/qtwebengine_devtools_resources.pak
/Users/prko/Dropbox/prko/myDocs/Writings/Digital Sound Production/mixed/dev/SuperCollider.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/A/Resources/qtwebengine_locales/en-GB.pak
count=0, state=0x12
count=0, state=0x12
->0xdf7823651e9a9de1
->0x37b748326a9e59a4
count=0, state=0x8
/
/private/etc
/private/etc/hosts
count=0, state=0x12
->0x90a0874746b7d92d
/System/Library/Extensions/AppleMetalOpenGLRenderer.bundle/Contents/Resources/default.metallib
/System/Library/Extensions/AppleMetalOpenGLRenderer.bundle/Contents/Resources/PixelConverter.metallib
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/History
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Favicons
/private/var/folders/2 /hdf9s2tx6kg7_yqv0bwqtlcm0000gn/T/SCIde_78719
->0x49656ee7d79b175e
->0xb8cb5ad53086cb4b
localhost:49211
->0x47e9af28e3387875
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/History-journal
->0x85d8f7cc20b305c2
->0x633c216c0d9625c
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Local Storage/leveldb/LOG.old
count=0, state=0x12
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Local Storage/leveldb/LOCK
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Local Storage/leveldb/MANIFEST-000001
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Visited Links
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Local Storage/leveldb/000017.log
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Local Storage/leveldb/000019.ldb
count=0, state=0x12
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/GPUCache/index
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/GPUCache/data_0
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/GPUCache/data_1
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/GPUCache/data_2
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/GPUCache/data_3
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/DawnCache/index
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/DawnCache/data_0
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/DawnCache/data_1
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/DawnCache/data_2
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/DawnCache/data_3
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Trust Tokens
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Local Storage/leveldb/000005.ldb
/private/var/folders/2 /hdf9s2tx6kg7_yqv0bwqtlcm0000gn/C/net.sourceforge.supercollider/com.apple.metal/16777235_530/functions.data
/private/var/folders/2 /hdf9s2tx6kg7_yqv0bwqtlcm0000gn/C/net.sourceforge.supercollider/com.apple.metal/16777235_530/functions.list
/private/var/folders/2 /hdf9s2tx6kg7_yqv0bwqtlcm0000gn/C/net.sourceforge.supercollider/com.apple.metal/32024/libraries.data
/private/var/folders/2 /hdf9s2tx6kg7_yqv0bwqtlcm0000gn/C/net.sourceforge.supercollider/com.apple.metal/32024/libraries.list
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Service Worker/Database/LOG.old
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Service Worker/Database/LOCK
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Service Worker/Database/MANIFEST-000001
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Service Worker/Database/000003.log
/private/var/folders/2 /hdf9s2tx6kg7_yqv0bwqtlcm0000gn/T/SCIde_78719
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Cookies
->0x37f9d63556aaf663
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Session Storage/LOG.old
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Session Storage/LOCK
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Session Storage/MANIFEST-000001
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Session Storage/000010.log
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Session Storage/000008.ldb
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Session Storage/000005.ldb
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Session Storage/000011.ldb
[ctl com.apple.netsrc id 7 unit 137]
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/Favicons-journal
localhost:55356->localhost:57110
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/WebStorage/QuotaManager
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/databases/Databases.db
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/WebStorage/QuotaManager-journal
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/File System/Origins/MANIFEST-000001
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/File System/Origins/LOG
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/File System/Origins/000003.log
/Users/prko/Library/Application Support/SuperCollider/webengine-cache/File System/Origins/LOCK
Would reporting this information, including the details from Open Files and Ports, help identify the problem?
1 Like
Does Activity Monitor show whether the large memory use is resident in RAM or total allocation?
@jamshark70 Yes, that’s an important caveat!
In Windows, Process Explorer shows “Private Bytes” (= reserved memory space) and “Working Set” (= actual memory in use). Only looking at the former can be misleading.
@prko Are these 14 GB the actual memory in use? In the details, it mentions “Real Memory Size” is 512 MB.
The “Real Memory Size” looks fine, but it’s a bit weird that the IDE would need to reserve 14 GB.
I just had a look at two scide instances on my Windows 10 laptop that have been running non-stop for weeks:
Instance 1: Private Bytes: 370 MB, Working Set: 60 MB
Instance 2: Private Bytes: 403 MB, Working Set: 72 MB
One instance is SC 3.14, the other one is a recent development build.
For comparison, Chrome on my system right now has VSZ = 49.1 GB and multiple subprocesses each using 1.4 TB (!) – but RSS is a quite slim 501.9 MB.
My system has 16 GB physical RAM and it is not choking under this memory load – i.e., high virtual set readings may not actually mean anything (in terms of performance).
hjh
high virtual set readings may not actually mean anything (in terms of performance).
Yes, it only means that virtual addresses have been reserved over time for that amount of memory. Fortunately, 64-bit systems have an infinite virtual address space for all practical purposes.
prko
April 20, 2026, 2:22pm
11
I’m not sure. The 14 GB is just a rounded version of the 13.91 GB shown in the first screenshot.