Can I use my working Python code as Jython? Are there any differencies? The point is that I have code in Python, but I want to divide the code into, at least, 2 parallel running processes to improve speed of my program. This can be done using Python because of Global Interpreter Lock. So my idea is to get whole code and compile it using Jython compiler.
Is it possible? If yes, are there any disadvantages?