Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lskbr/keyperftest
Teste de performance da troca de chaves inteiras por uuids no postgres
https://github.com/lskbr/keyperftest
Last synced: 24 days ago
JSON representation
Teste de performance da troca de chaves inteiras por uuids no postgres
- Host: GitHub
- URL: https://github.com/lskbr/keyperftest
- Owner: lskbr
- Created: 2016-05-28T10:36:17.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-05-28T12:13:24.000Z (over 8 years ago)
- Last Synced: 2024-08-04T04:04:50.252Z (4 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- starred-awesome - keyperftest - Teste de performance da troca de chaves inteiras por uuids no postgres (Python)
README
# keyperftest
Teste de performance da troca de chaves inteiras por uuids no postgresArtigo completo no Blog: http://junglecoders.blogspot.be/2016/05/uso-de-uuids-como-chave-primaria-com.html
# Para testar em sua máquina:
1. Instale o postgresql 9.5
2. Crie um ambiente virtual. No Ubuntu 16.04 LTS:```mkvirtualenv -p /usr/bin/python3.5 perftest```
3. Instale os pacotes necessários:
```pip install -r requiments.txt```
4. Migre:
```python manage.py migrate```
5. Execute os testes:
```python manage.py test```
Para mudar o número de registros criados, modifique a variável `N` em `settings.py`.