Questions tagged [beam]

This tag should be used for questions about the BEAM, the Erlang virtual machine.

The BEAM (Bogdan/Björn's Erlang Abstract Machine) is the Erlang virtual machine. Besides , there are also other languages that can target the BEAM virtual machine, such as Joxa, , , and others.

Disambiguation

  • Use for questions related to Apache Beam, an SDK for batch and stream processing.
  • Use for questions related to Android Beam, the NFC peer-to-peer mode NDEF message exchange mechanism in Android.
  • Use for questions related to the heuristic search algorithm beam search.
106 questions
-1
votes
1 answer

Scala console: OutOfMemoryError: GC overhead limit exceeded

Scala: (1 to 100000000).toList.foldLeft(0)((acc, x) => acc + x) Elixir: 1..100000000 |> Enum.to_list |> List.foldl(0, fn x, acc -> x + acc end) They are of the same functionality. However, JVM just throws GC outrage exception in the contrast…
chenyuandong
  • 286
  • 1
  • 9
1 2 3 4 5 6 7
8