Is it possible to develop a powerful web search engine using Erlang, Mnesia & Yaws?

前端 未结 4 1076
感情败类
感情败类 2021-02-02 04:07

I am thinking of developing a web search engine using Erlang, Mnesia & Yaws. Is it possible to make a powerful and the fastest web search engine using these software? What w

4条回答
  •  猫巷女王i
    2021-02-02 04:30

    I would recommend CouchDB instead of Mnesia.

    • Mnesia doesn't have Map-Reduce, CouchDB does (correction - see comments)
    • Mnesia is statically typed, CouchDB is a document database (and pages are documents, i.e. a better fit to the information model in my opinion)
    • Mnesia is primarily intended to be a memory-resident database

    YAWS is pretty good. You should also consider MochiWeb.

    You won't go wrong with Erlang

提交回复
热议问题