Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kafkaesc/smart-vault
https://github.com/kafkaesc/smart-vault
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/kafkaesc/smart-vault
- Owner: kafkaesc
- Created: 2023-05-04T14:43:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-05T17:26:40.000Z (over 1 year ago)
- Last Synced: 2023-08-04T00:51:44.019Z (over 1 year ago)
- Language: C#
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SmartVault
SmartVault will create a SQLite database and fill it with 10 users who have thousands of documents saved into the database.
## SmartVault.CodeGeneration
This project generates code that is used in the SmartVault.Program library.
## SmartVault.DataGeneration
This project generates a SQLite database with users, accounts, and documents. Previously it was taking several minutes to run, so the process has been optimized in several ways:
1. Document inserts are batched instead of being run sequentially.
2. The user and account queries are executed in an earlier, non-nested loop.
3. Loop-unrolling has been applied to the nested for loop that creates documents for insertion. It now takes about 16000 ms to run on a 2020 MacBook Pro with 8 GB of memory.SQL statements have been broken off into private methods to follow the DRY principle. They have been updated to include values for the DateCreated field.
## SmartVault.Program
This project contains the business logic information for SmartVault. The Account, Document, and User business objects have been updated to include a DateCreated field.