The RAM usage of my Repl stays at limit although its not running

Problem description:
The RAM usage of my Repl stays ‘at limit’ although its not running.

Expected behavior:
RAM usage should go down after I stop the Repl.
I should have the opportunity to fully stop it.

Actual behavior:
The RAM usage of my Repl stays ‘at limit’ although its not running.

Steps to reproduce:

Bug appears at this link:
https://replit.com/@KatharinaNi/Neican-Alert#main.py
(private repl)

Browser/OS/Device:
Chrome, Mac Monterey, Macbook 12

the language server is always running. Disable code intelligence in IDE settings if you don’t need it. Otherwise: every time you don’t need the language server, run

kill -1 `pidof pylsp`

and close all python files

1 Like

Hey,

We were showing some cached memory in the RAM that made the Repl resources look like it is at the limit, we reverted this change so this should be fixed now.

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.