Avatar

Organizations

@linkedin @rss
2 results for Database
  • Here is the source code and post for my LLM to SQL group project for a Database class. https://github.com/pined1/LLM_SQL Natural Language SQL Project Purpose of the Database My database models vendor and product data for a marketplace application, which includes vendors, their products, customer ratings, and orders. Schema Query I thought it did well on Question: Which vendors have the highest rating? GPT SQL Response: SELECT Vendors.VendorID, Vendors.VendorName, MAX(Ratings.RatingValue) as MaxRating FROM Vendors INNER JOIN Ratings ON Vendors.
    SQL Database AI Created Tue, 07 Jan 2025 00:00:00 +0000
  • For my final project for my database modeling class at BYU I decided to combine my desire to learn more Rust and fulfill the following requirements at the same time: Features Caching layer non-persistent (e.g. Redis) and persistent layer (e.g. Postgres SQL). (See https://redis.com/wp-content/uploads/2023/04/redis-enterprise-for-caching.pdf) In-memory cache (fastest, but volatile) Redis cache (medium speed, distributed) PostgreSQL database (persistent storage) Support 5000 read requests per second with subsecond average latency on each request.
    Rust Database Created Wed, 01 Jan 2025 00:00:00 +0000