Goroutines have a smaller _____ footprint compared to threads.

  • Memory
  • Processor
  • Disk
  • Network
Goroutines have a smaller memory footprint compared to threads. This is because Goroutines are managed by Go's runtime, which uses a more efficient and lightweight model for concurrency. Goroutines share the same memory space, making them more memory-efficient compared to threads, which require separate memory for stack and other resources.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *