Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Monix support #448

Merged
merged 1 commit into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ Not Supported:
- Implicit class based extensions. Please see the [Extensions](https://github.com/zio/zio-protoquill#extensions) section below on how to do this.

Planned Future Support
- Monix JDBC (and Cassandra) Contexts (Coming Soon!)
- OrientDB Contexts
- Spark Context

Expand All @@ -45,7 +44,7 @@ For further information, watch:

The simplest way to get started with ProtoQuill is with the standard JDBC contexts.
These are sychronous so for a high-throughput system you will ultimately need to switch
to either the ZIO-based contexts or the Monix ones (Monix contexts coming soon!)
to either the ZIO-based contexts

Add the following to your SBT file:
```scala
Expand Down
6 changes: 0 additions & 6 deletions build/setup_db_scripts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@ function setup_sqlite() {
echo "Setting permissions on sqlite DB File"
chmod a+rw $DB_FILE

# # DB File in quill-jdbc-monix
# DB_FILE=quill-jdbc-monix/quill_test.db
# rm -f $DB_FILE
# sqlite3 $DB_FILE < $SQLITE_SCRIPT
# chmod a+rw $DB_FILE

echo "Sqlite ready!"
}

Expand Down