We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ca01029 + 4b204bb commit 80b649eCopy full SHA for 80b649e
README.md
@@ -13,11 +13,20 @@ async def helloworld(event: Event):
13
```
14
15
The entire API is, at core, asynchronous.
16
+Though you do not need to await any methods unless you want to wait for the call to complete.
17
18
## Documentation
19
20
See [The Docs](https://omena0.github.io/PyJavaBridge/index.html)
21
22
+For quick searches use the pjb cli script.
23
+
24
+## Performance
25
26
+Currently the performance is suboptimal, the current bottleneck is the bridge itself.
27
+You should avoid doing anything that sends many requests over the bridge.
28
+If possible you should always use `server.frame()` to batch requests.
29
30
## Changelog
31
32
See [changelog.md](changelog.md)
0 commit comments