Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabianogoes/demo-kotlin-spring-load-csv-to-databatase
Spike about load Big CSV files in Memory like a Database
https://github.com/fabianogoes/demo-kotlin-spring-load-csv-to-databatase
Last synced: about 2 months ago
JSON representation
Spike about load Big CSV files in Memory like a Database
- Host: GitHub
- URL: https://github.com/fabianogoes/demo-kotlin-spring-load-csv-to-databatase
- Owner: fabianogoes
- Created: 2020-01-28T22:05:39.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-03T20:25:55.000Z (almost 5 years ago)
- Last Synced: 2024-10-16T19:59:43.617Z (2 months ago)
- Language: Kotlin
- Size: 4.41 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spike Load Table
### Setup Postgres Local by Docker
```
docker run -p 5432:5432 -d \
-e POSTGRES_PASSWORD=postgres \
-e POSTGRES_USER=postgres \
-e POSTGRES_DB=pricing \
-v pgdata:/var/lib/postgresql/data \
postgres
```