Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Apache Software

mod_snake Is Dead 18

jayed_99 writes "mod_snake has been abandoned by its creater Jon Travis. He cites a lack of 'time or motivation.' Like mod_python, it embedds the Python interpreter into Apache. Unlike mod_python, it includes support for HTML-embedded python (a very nifty feature). It's still available here. Wouldn't you know this would happen two days after I decide to switch from mod_python to mod_snake?"
This discussion has been archived. No new comments can be posted.

mod_snake Is Dead

Comments Filter:
  • by Anonymous Coward
    I thought one of the big advantages to open source was that anybody could pick up a project after the creator decided to stop. Now he "kills" it instead of leaving it... wtf?
    • Re:Wtf (Score:3, Insightful)

      by Cow4263 ( 312716 )
      I think by no longer hosting the file, he is saying that he no longer supports it and doesn't want a thousand emails from people who can't figure out why it doesn't work. Assuming that it was made released under the GPL, it could be picked up by another person or group. In all likely-hood, its not going to be picked up, as its a small apache module; which already has an established alternative.

      I think anyone willing to work on this project, would better spend their resources on mod_python instead.
    • Re:Wtf (Score:4, Informative)

      by Jick ( 29139 ) on Sunday May 12, 2002 @01:24PM (#3506371) Homepage
      Anyone can pick it up if they like. The license
      is BSDish.
  • bye bye (Score:3, Informative)

    by DrSkwid ( 118965 ) on Sunday May 12, 2002 @06:23AM (#3505266) Journal
    I was one of the people bugging him for updates, I could never get it to compile of FreeBSD for me.

    I ended up going over to mod_python.

    Shame because one of the premises of mod_snake was the concept of nested python interpreters. Like Apache itself mod_snake had one thread and then passed the request on to another python interpreter running as a sub thread so that you could maintain state between requests by using the same interpreter.

    It sounded interesting, but I never got the chance to find out.

    mod_python has the annoying attribute of requiring the whole python installation to be compiled as single threaded which means some modules don't work (urllib for instance - so you have to roll your own url en/decoder). Which then leaves you in the stick world of two python installations of you want to use sockets and threads in other applications.

    I've still not sussed out how to easily manage two installations :(

    mod_python does rule though, I much prefer using it to php or standard CGI and I'm so glad I dont have to learn any more of mod_perl than the rudimentrary stuff I picked from reading the O'Reilly mod_perl book.

    • I did manage to get it compiled and installed on FreeBSD without much of a problem. I just couldn't get it to load any modules.

    • mod_python has the annoying attribute of requiring the whole python installation to be compiled as single threaded which means some modules don't work (urllib for instance - so you have to roll your own url en/decoder).

      I am very surprised to hear that urllib has problems on a single-threaded interpreter. In fact I am somewhat doubtful that that is true!

      • Re:bye bye (Score:2, Informative)

        by DrSkwid ( 118965 )
        oh dear my bad, I wonder what I was thinking

        In pennance for my mistake I embarked on the list of stuff from the standard distribution that failed on import $MODULE :

        dl : FAILED dl -- Call C functions in shared objects
        gdbm : FAILED -- GNU's reinterpretation of dbm
        mpz : FAILED -- GNU arbitrary magnitude integers (Deprecated since release 2.2.)

        and of course :
        thread : FAILED
        threading : FAILED

        I hope that repays my debt to society

"Little else matters than to write good code." -- Karl Lehenbauer

Working...