Performance (EXPERIMENTAL)

Display Entity Settings

performance:
  max_preview_blocks: 1000  # Limit preview blocks
  async_preview: true       # Async updates
  preview_throttle: 50      # Update delay (ms)

Memory Management

  • Clear unused previews

  • Limit selection sizes

  • Use efficient block storage

  • Implement caching

  • Regular cleanup cycles

CPU Usage

  • Async preview updates

  • Throttled updates

  • Efficient calculations

  • Optimized algorithms

  • Background processing

Network Impact

  • Compressed packets

  • Batched updates

  • Local caching

  • Reduced frequency

  • Priority queuing

Configuration Examples

High Performance

performance:
  max_preview_blocks: 500
  async_preview: true
  preview_throttle: 100
  batch_updates: true
  use_cache: true

Memory Efficient

performance:
  max_preview_blocks: 250
  cleanup_interval: 300
  cache_size: 1000
  auto_purge: true

Network Optimized

performance:
  compression: true
  batch_size: 50
  update_interval: 100
  priority_distance: 32

Last updated