Skip to content

Commit 0eba96b

Browse files
authored
Add River Python link from README + doc.go (#447)
The README links out to River Ruby already. Here, add a link to Stripe Python as well. Also, add this section to `doc.go` (where it'd previously been forgotten) to keep these two docs in sync.
1 parent 827ec54 commit 0eba96b

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

doc.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,13 @@ See the [`InsertAndWork` example] for complete code.
151151
152152
- [Work functions] for simplified worker implementation.
153153
154+
## Cross language enqueueing
155+
156+
River supports inserting jobs in some non-Go languages which are then worked by Go implementations. This may be desirable in performance sensitive cases so that jobs can take advantage of Go's fast runtime.
157+
158+
- [Inserting jobs from Python].
159+
- [Inserting jobs from Ruby].
160+
154161
# Development
155162
156163
See [developing River].
@@ -163,6 +170,8 @@ See [developing River].
163170
[Batch job insertion]: https://riverqueue.com/docs/batch-job-insertion
164171
[Cancelling jobs]: https://riverqueue.com/docs/cancelling-jobs
165172
[Error and panic handling]: https://riverqueue.com/docs/error-handling
173+
[Inserting jobs from Python]: https://riverqueue.com/docs/python
174+
[Inserting jobs from Ruby]: https://riverqueue.com/docs/ruby
166175
[Multiple queues]: https://riverqueue.com/docs/multiple-queues
167176
[Periodic and cron jobs]: https://riverqueue.com/docs/periodic-jobs
168177
[River UI]: https://github.com/riverqueue/riverui

docs/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,9 @@ See the [`InsertAndWork` example] for complete code.
165165

166166
## Cross language enqueueing
167167

168-
River supports inserting jobs in some non-Go languages which are then be worked by Go implementations. This may be desirable in performance sensitive cases so that jobs can take advantage of Go's fast runtime.
168+
River supports inserting jobs in some non-Go languages which are then worked by Go implementations. This may be desirable in performance sensitive cases so that jobs can take advantage of Go's fast runtime.
169169

170+
- [Inserting jobs from Python](https://riverqueue.com/docs/python).
170171
- [Inserting jobs from Ruby](https://riverqueue.com/docs/ruby).
171172

172173
## Development

0 commit comments

Comments
 (0)