Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jmari/scouchdb
Pharo driver for CouchDB database using Zinc client. Supports Mango queries and implements Voyage API
https://github.com/jmari/scouchdb
database pharo pharo-smalltalk smalltalk voyage
Last synced: 4 months ago
JSON representation
Pharo driver for CouchDB database using Zinc client. Supports Mango queries and implements Voyage API
- Host: GitHub
- URL: https://github.com/jmari/scouchdb
- Owner: jmari
- License: gpl-3.0
- Created: 2017-09-16T05:00:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-10-05T12:41:44.000Z (over 2 years ago)
- Last Synced: 2024-09-25T21:41:09.393Z (4 months ago)
- Topics: database, pharo, pharo-smalltalk, smalltalk, voyage
- Language: Smalltalk
- Size: 332 KB
- Stars: 8
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SCouchDB
Pharo driver for CouchDB database using Zinc client. Supports Mango queries and implements Voyage APIInstall
-------You can install it executing scripts:
### SCouchDB-Core
```Smalltalk
Metacello new
baseline: 'SCouchDB';
repository: 'github://jmari/SCouchDB/repository';
load
```### SCouchDB-Voyage
```Smalltalk
Metacello new
baseline: 'SCouchDB';
repository: 'github://jmari/SCouchDB/repository';
load:'voyage'
```### SCouchDB-ViewServer
```Smalltalk
Metacello new
baseline: 'SCouchDB';
repository: 'github://jmari/SCouchDB/repository';
load:'viewserver'
```
You have to change couchdb configuration in order to use the smalltalk viewserver, add a new input in query_servers section for "smalltalk" "/Path_to_Pharo_executable/Pharo --headless /Path_to_Pharo_image/Pharo6.1.image viewserver --debug"