Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/intina47/hopper
e-commerce crawler
https://github.com/intina47/hopper
cassandra cpp curl gumbo webcrawler
Last synced: about 1 month ago
JSON representation
e-commerce crawler
- Host: GitHub
- URL: https://github.com/intina47/hopper
- Owner: Intina47
- Created: 2023-12-22T04:40:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-07T15:28:22.000Z (6 months ago)
- Last Synced: 2024-07-07T20:24:25.436Z (6 months ago)
- Topics: cassandra, cpp, curl, gumbo, webcrawler
- Language: C++
- Homepage:
- Size: 186 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HOPPER
# Run Cassandra in Docker
```bash
docker run --name pipercass -p 9042:9042 -d cassandra:latest
```
If you already created pipercass container, you can start it with:
```bash
docker start pipercass
```
if you want to run Cassandra shell to view tables and data, you can run:
```bash
docker exec -it pipercass cqlsh
```
you can view tables with:
```bash
describe tables;
```
if you want to view data in a table, you can run:
```bash
select * from .;
```# unprod steak
6