I am new to web programming

I need to develop a web page running on a server, that needs to show progress status of 10 threads simultaneously. Also I would require SQLite database integration.

Please tell me what are the options available for me for choosing a scripting language and web server [socket] development framework. Also suggest the most suitable.

Thanks for any help

有帮助吗?

解决方案

Python would be an excellent choice. It has SQLite integrated as documented here.

Python also has the following features (and many others) integrated:

  • threading and synchronization
  • Networking (sockets)
  • lots of web server (and web pages, etc) handling options

Here is a page that discusses several different Python web server frameworks. Im not very familiar with it, but Ive heard lots of good things about Django.

Another excellent choice would be Ruby on Rails. Ruby is the scripting language and Rails is the Web Server Framework.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top