Hey everyone! I've developed this handy Python tool that takes PDF documents as input. You can paste in an excerpt, and it tells you the page number where that excerpt is found. I'm wondering if there's a way to scale this tool. Any tips or ideas?
1 Answer
If you're thinking about scalability, consider shifting some of the workload to JavaScript. By creating a web app, most of the processing could happen on the client side, making it much easier to manage increased traffic. You might also explore using WASM with Python for better performance on the web!
I'll definitely check out WASM technology. Thanks for the suggestion!