PHPMem v2.0.1

Version
1.6.45
Uptime
7 days 9 hours 44 minutes 51 seconds

Memory

Total
512MB
Used
13,32MB (2.6%)
Free
498,68MB

Keys

Current
10 162
Total (since start)
11 092
Evictions
0
Reclaimed
157
Expired Unfetched
0
Evicted Unfetched
0

Connections

Current
3 / 1 024 max
Total
65 367
Rejected
0
llm:7b905cc627456c344b497c7f44d9d3ec32e1bdeb7d49c0fb63267d7651a213d2
TTL 6 hours 18 minutes 44 seconds Size 2,51KB Export
Edit
```json { "queries": [ { "query": "SELECT job_title, COUNT(*) AS job_count FROM ai_job_dataset GROUP BY job_title ORDER BY job_count DESC LIMIT 10", "description": "Top 10 most common AI job titles in the dataset." }, { "query": "SELECT company_location, COUNT(*) AS listings FROM ai_job_dataset GROUP BY company_location ORDER BY listings DESC LIMIT 15", "description": "Countries with the most AI job postings." }, { "query": "SELECT experience_level, COUNT(*) AS count FROM ai_job_dataset WHERE experience_level IS NOT NULL GROUP BY experience_level ORDER BY count DESC", "description": "Distribution of jobs by experience level requirement." }, { "query": "SELECT employment_type, COUNT(*) AS total FROM ai_job_dataset WHERE employment_type IS NOT NULL GROUP BY employment_type ORDER BY total DESC", "description": "Breakdown of AI jobs by employment type (full-time, part-time, contract)." }, { "query": "SELECT company_size, COUNT(*) AS jobs FROM ai_job_dataset WHERE company_size IS NOT NULL GROUP BY company_size ORDER BY jobs DESC", "description": "Number of AI job postings by company size category." }, { "query": "SELECT remote_ratio, COUNT(*) AS positions FROM ai_job_dataset WHERE remote_ratio IS NOT NULL GROUP BY remote_ratio ORDER BY positions DESC", "description": "Distribution of jobs by remote work ratio." }, { "query": "SELECT industry, COUNT(*) AS openings FROM ai_job_dataset WHERE industry IS NOT NULL GROUP BY industry ORDER BY openings DESC LIMIT 12", "description": "Top industries hiring for AI positions." }, { "query": "SELECT education_required, COUNT(*) AS count FROM ai_job_dataset WHERE education_required IS NOT NULL GROUP BY education_required ORDER BY count DESC", "description": "Education requirements for AI jobs in the market." }, { "query": "SELECT salary_currency, COUNT(*) AS listings FROM ai_job_dataset WHERE salary_currency IS NOT NULL GROUP BY salary_currency ORDER BY listings DESC LIMIT 10", "description": "Most common currencies used for AI job salary postings." }, { "query": "SELECT job_title, company_location, employment_type FROM ai_job_dataset WHERE job_title IS NOT NULL LIMIT 20", "description": "Sample of AI job listings with title, location, and employment type." } ] } ```