Skip to content

Benchmarks

Groundbreaking edited this page Aug 29, 2025 · 2 revisions

Performance Benchmarks

File Reading (100KB)

Method Time Relative Use Case
Files.readString() 89μs 1.0x Bulk reading
Fission.chars() 145μs 1.6x Streaming
BufferedReader 3551μs 39.9x Legacy approach

String Processing (10K chars)

Method Time Relative Note
Direct charAt() 69.5μs 1.0x Baseline
FissionParser 122ns 570x faster O(1) complexity
StringReader 9.2ms 132x slower Standard library

Key Findings

  • Fission excels at parsing operations
  • Character streaming is highly efficient
  • Bulk reading is competitive with standard methods

Clone this wiki locally