CS2613 Programming Languages Lab Exploration Activity
RSS (Resident Set Size): memory currently in physical RAM for this process.
VMS (Virtual Memory Size): total virtual address space reserved by the process (includes mapped regions not all in RAM).
Rule of thumb: RSS is usually the better number for “real memory pressure” on the system.
DROP TABLE IF EXISTS * CREATE TABLE users (age int, id int PRIMARY KEY, fname str, lname str) INSERT RANDOM USERS INTO users COUNT 1000 START_ID 1 AGE_RANGE (18, 90) SELECT COUNT(*) FROM users SELECT * FROM users WHERE id = 1 SHOW * FROM users SHOW TABLES