Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```