How to set ram used by the crawler
Ive scoured the docs and used chatgpt/perplexity. I for the life of me cannot work out how to set the ram available to the crawler. I want to give it 20gb i have a 32gb system

from crawlee import Configurationfrom crawlee.configuration import Configurationfrom crawlee.http_crawler import HttpCrawler, HttpCrawlingContext
from crawlee.configuration import Configuration
async def main() -> None:
crawler = HttpCrawler(
configuration=Configuration(memory_mbytes=20480)
)