The new index on the `user_id` column in the `profiles` table improves query performance for user-specific lookups, reducing full table scans during authentication and profile retrieval operations.
13 lines
331 B
Makefile
13 lines
331 B
Makefile
all: build run
|
|
|
|
build:
|
|
gcc main.c -lssl -lcrypto -ljson-c -Ofast -o r -Werror -Wall -lpython3.14 -I/usr/include/python3.14 -lreadline -lncurses
|
|
publish r
|
|
|
|
build_free:
|
|
gcc main.c -DFREE_VERSION -lssl -lcrypto -ljson-c -Ofast -o rf -Werror -Wall -lpython3.14 -I/usr/include/python3.14 -lreadline -lncurses
|
|
publish rf
|
|
|
|
run:
|
|
./r
|