PHPMem v2.0.1

Version
1.6.45
Uptime
7 days 14 hours 46 minutes 37 seconds

Memory

Total
512MB
Used
13,20MB (2.58%)
Free
498,80MB

Keys

Current
10 078
Total (since start)
11 096
Evictions
0
Reclaimed
190
Expired Unfetched
0
Evicted Unfetched
0

Connections

Current
5 / 1 024 max
Total
69 860
Rejected
0
llm:85ce5ff073c1d0d470214ffaef2d9a2bb888c6390e551ce3884685902c6a67c7
TTL 3 days 11 hours 9 minutes 51 seconds Size 1,46KB Export
Edit
```json { "table_name": "place_types", "primary_key": "type_id", "candidates": [ { "rank": 0, "partition_key": null, "partition_key_label": null, "partition_key_reasoning": "This is a small reference dimension table with only 8 rows representing place type categories (Brewpub, Bar, Beer Store, etc.). With such a small row count, partitioning would create unnecessary overhead. The table should remain as a single file for optimal performance in joins and lookups.", "clustering_key": null, "clustering_key_label": null, "clustering_key_reasoning": "No clustering needed for a small dimension table. The type_id already provides natural ordering (monotonicity=1.000) and the table is small enough to scan efficiently without internal sorting.", "world_line": null, "session_column": null, "confidence": "HIGH", "notes": "Classic small dimension/lookup table. The type_id column serves as the primary key with perfect uniqueness (RPUV=1.00, 8 unique values for 8 rows). This table will be used to decode place type codes in the places table. The metadata columns (_ingestion_timestamp, _batch_id, _source_file, _source_system) are ETL artifacts with RPUV=8.00 and should not influence key selection. No partitioning or clustering is appropriate for a table of this size." } ] } ```