# HG changeset patch # User wenzelm # Date 1726247633 -7200 # Node ID e55723709fab0ea7cfbb60a59211ce2bdcde780c # Parent 55b74d63b18c57d7d0fb0fca70ed944f0eece794 less ambitious Bytes.chunk_size for potentially more stable Poly/ML GC (see f0d8f659b19a, but also java.io.InputStream.DEFAULT_BUFFER_SIZE); diff -r 55b74d63b18c -r e55723709fab src/Pure/General/bytes.ML --- a/src/Pure/General/bytes.ML Thu Sep 12 20:15:28 2024 +0200 +++ b/src/Pure/General/bytes.ML Fri Sep 13 19:13:53 2024 +0200 @@ -48,7 +48,7 @@ (* primitive operations *) -val chunk_size = 65000; +val chunk_size = 16384; abstype T = Bytes of {buffer: string list, chunks: string list, m: int (*buffer size*), n: int (*chunks size*)}