Tagged Questions

Yaws is a HTTP high perfomance 1.1 webserver particularly well suited for dynamic-content web applications.

learn more… | top users | synonyms

6
votes
4answers
2k views

Erlang's maximum number of simultaneous open ports?

Does the erlang TCP/IP library have some limitations? I've done some searching but can't find any definitive answers. I have set the ERL_MAX_PORTS environment variable to 12000 and configured Yaws to ...
5
votes
3answers
2k views

Where does Nitrogen get the best performance - yaws, mochiweb, or inets?

The Nitrogen project web page declares equal support for yaws, mochiweb, and inets, but with which of these web servers is it going to perform the best? I.e. for a large scale application with mostly ...
4
votes
1answer
75 views

changing a specific header in yaws respond

I would like to change the http-header "Server: " value dynamically (while building the respond) in yaws. I tried:- [{status, 200}, {allheaders, [{header, ["Server: ","ASP.NET ...
4
votes
1answer
319 views

Very Large Mnesia Tables in Production

We are using Mnesia as a primary Database for a very large system. Mnesia Fragmented Tables have behaved so well over the testing period. System has got about 15 tables, each replicated across 2 sites ...
3
votes
1answer
69 views

Counting number of Hits on yaws web application

if i have a web application running from a yaws web server, how would i count the number of hits from users to my site? I have tried to use rudimentary methods of counting the number of lines in the ...
3
votes
2answers
851 views

Has anybody used YAWS server as an HTTP Proxy?

I am planning to setup an YAWS webserver as a HTTP proxy server . I am basically trying to achieve a high throughput HTTP proxy server which should be able to take webscale load. The requirement is ...
3
votes
4answers
1k views

Is it possible to develop a Powerful WEB Search Engine using Erlang, Mnesia & YAWS?

I am thinking of developing A Web search Engine using Erlang, Mnesia & YAWS. Is it possible to make powerful & fastest WEB SEARCH ENGINE using these???? What will it need to accomplish this ...
2
votes
2answers
109 views

Any lightweight erlang based server supporting url parsing like tornado, and no ORM features?

I tried out YAWS and was hoping that someone has already written a URL parser / request handler on top of it. I don't want anything close to ChicagoBoss which includes an ORM as well. Let me know if ...
2
votes
4answers
87 views

Yaws process died

I do performance testing of our Erlang application with OpenSTA. The test runs with 100 virtual users. At some point the following errors start popping up: Yaws process died: ...
2
votes
0answers
187 views

Mnesia Fragmentation and replication: resultant availability and reliability

Following the solutions to the question i asked recently about mnesia fragmentation, I still have a number of challenges. Consider the following scenario (The question I am asking is based on what ...
2
votes
1answer
151 views

how do we efficiently handle time related constraints on mnesia records?

i am writing records into mnesia which should be kept there only for an allowed time (24 hours). after 24 hours, before a user modifies part of them, the system should remove them automatically. ...
2
votes
1answer
253 views

Working with Emails (POP3, IMAP, SMTP e.t.c) in Erlang?

How can one handle email related communications pragmatically in Erlang/OTP? Using bash, python or Perl scripts, its possible for one to send out emails. However, in Erlang, i have not yet found an ...
2
votes
2answers
400 views

How to setup Yaws webserver on Ubuntu Server 10.10?

I would like to develop some web applications using Erlang and the Yaws webserver. But I'm having problem with setting up Yaws on Ubuntu Server 10.10. First I updated my Ubuntu system with: sudo ...
2
votes
1answer
274 views

Running Yaws Apps

I am quite new to erlang and yaws. I after playing around with the language and easy yaws features like ehtml and normal appmods I tried to write a yapp. I followed ...
2
votes
0answers
287 views

running and testing ejabberd on localhost?

I have installed ejabberd on my HP pavilion (Entertainment laptop running windows 7), during the installation i was prompted to enter the server domain. Since i wanted to experiment on it, i entered ...
2
votes
1answer
165 views

yaws and erlang beam files in ebin

I am having problems when i have integers and float numbers in my form posts and receive these in my ebin file where i have beam files. Hope someone can help me. npower.yaws <erl> kv(K,L) ...
2
votes
1answer
428 views

How to set up a Yaws yapp?

I am struggling with setting up a yapp for Yaws. Can anyone provide a link to documentation or copy paste a short example here? Sorry that this is a rather unspecific question, but I am more or less ...
2
votes
2answers
131 views

How do I disable debug checks in yaws?

When i start yaws (yaws -i --conf config/yaws.conf) i get this line in the output: Running with debug checks turned on (slower server) It depends on the "-i" option? Or where did i turned on debug ...
2
votes
3answers
111 views

Do different web servers suffer from the same types of attacks?

I'm creating a web applications with Yaws. In the past I've worked with tomcat and IIS. Do web servers typically suffer from the same types of vulnerabilities? Do good web security practices generally ...
1
vote
2answers
70 views

HMAC SHA256 hex digest of a string in Erlang, how?

I am trying to interact with third party real time Web messaging System created and maintained by Pusher.com. Now, i cannot send anything through the API unless i produce an HMAC SHA256 hex digest of ...
1
vote
1answer
82 views

How do i get values from this URL? and execute an erlang module with the values to reply the client with result?

http://www.myserver.com/exile?Key1=Value1&Key2=Value2 When i get a request in this format to my server, how do i handle this request? What i need to do: Need to get all the values and run a ...
1
vote
0answers
37 views

How to use c++ module with yaws

I don't have experience in using c++ with apache or other web server. But now want to use it with yaws to generate pdf from passed data. May be somebody has experience in doing so. Please any link. I ...
1
vote
0answers
62 views

mnesia:wait_for_tables/2 , do i really understand it?

I have used mnesia for a while now. I have to confess that i feel like i do not exactly understand the concept of mnesia:wait_for_tables/2. Quoting the documentation here below says this: Some ...
1
vote
1answer
123 views

YAWS Websocket Trouble

I'm trying to get the YAWS websocket example from here running on my local. It's a basic ws-based echo server. I have YAWS set up and running on localhost:8080 (direct from the Debian repos; no ...
1
vote
1answer
90 views

How to run Yaws in embedded mode

Here i got small example how to run Yaws embedded, but how i need to install Yaws to get it worked?
1
vote
1answer
108 views

Erlang SMP enable Option on Multicore Servers

We are running Erlang 14B03 on the following Host: HP Proliant G6 Server, has 2 Intel processors, each processor has 2.4GHz speed, 8MB Cache, each processor has 4 cores. The Server has 20 GB RAM. ...
1
vote
2answers
262 views

Information on 64 bit Erlang? [closed]

Qn 1: What is 64-bit Erlang? , How different is it from 32-bit Erlang? and where can some one find 64-bit Erlang? Qn 2: What are the main performance advantages gained when we move an Erlang ...
1
vote
0answers
107 views

Getting Yapp Set Up

I am trying to follow the yapp intro and having some basic difficulties. Preliminaries: Version of yaws is 1.9, yapp has been installed (with docs). Yaws and Yapp installed manually, Erlang installed ...
1
vote
2answers
155 views

Erlang and YAWS setup in Windows

I am trying to setup Erlang with YAWS in Windows. I Installed otp_win32_R14B03.exe and it worked fine and I am able to compile Erlang Programs. I installed Yaws-1.90-windows-installer.exe, then ...
1
vote
1answer
383 views

How can an ejabberd newbie setup a fully functioning ejabberd server?

i am completely new to ejabberd. I have downloaded the installation for both windows and linux (Ubuntu). Somewhere on the web i had seen a demo of how to install and set it up but the installation was ...
1
vote
2answers
250 views

Yaws and PUT requests

I just started working with Yaws to try to create some simple RESTful web services, however I ran into an unexpected issue: I can't seem to access my data when I do a PUT request. When I try to use ...
1
vote
1answer
207 views

Mochiweb : Reading a file as it is uploaded

I want to be able to read a file just as it is being uploaded by the user, i.e. I want to read the incoming stream of bytes from the user's browser.. Is that possible with Mochiweb? If not, where do I ...
1
vote
2answers
207 views

Yaws crashes when I browse to my new erlyweb application

I am following the music application article on Yarivs blog. When I go to http://localhost:8002 I get the index page showing correctlty but if I try to browse to http://localhost:8002/music I get ...
1
vote
1answer
223 views

how to include yaws file inside the yaws file

i have one yaws file(let say a.yaws) inside that I have a lot of function which i m using again and again .so i have decided to put those common function inside the other yaws file (let say ...
1
vote
0answers
121 views

detecting data/node partition errors

The last time I saw a data/partition node error it was because I launched the erlang shell which connected to the node on the same CPU via cookies etc. Immediately after startup the shell dumped the ...
1
vote
1answer
703 views

YAWS fronting Tomcat

Is there currently any easy way to set up a YAWS web server in front of Apache Tomcat Servlet container, similar to popular Apache httpd + Tomcat set up?
0
votes
0answers
23 views

Erlsoap / Yaws and multirefs

Anyone know if erlsoap is able to handle SOAP responses containing multirefs? I have tested only Yaws and it fails with multirefs, which are soap encoding concept.
0
votes
0answers
12 views

SessionEnd event in Yaws

I need to delete file after downloading. I think that good place to do it is at the end of session handler. Where this handler in Yaws?
0
votes
2answers
84 views

Destroying a Data Structure when program doesnot need it anymore — Erlang

Certain functions that manipulate Tuples in Erlang, result into copies of new tuples after the operation. In most cases, the program is no longer interested in the old tuple copy from which a new one ...
0
votes
1answer
41 views

Parse yaws get query

This crashed out(A) -> io:format("~wqqq12", yaws_api:queryvar(A, "id"), yaws_api:parse_query(A)), with this Reason: {function_clause, [{io,request, ...
0
votes
0answers
48 views

erlsrv - failed to create a service on windows

was trying to create a windows service like this: erlsrv add muzaaya -w "C:/Folder" -c "test erlang service" -ar "-pa .. -eval \"service:start()\"" i got the following error immediately: erlsrv: ...
0
votes
1answer
104 views

How to maintain stateful in yaws

I have some process (spawned) with state. How to maintain simple stateful service in yaws? How to implement communication to process in "appmods" erl source file? update: let's we have simple ...
0
votes
0answers
80 views

Mnesia Backup in large systems

In our setup, we found that issuing the following backup call with mnesia:backup_checkpoint(Name, Opaque, [Mod]) is more expensive as compared to this one: (mnesia:backup(Opaque, [Mod])). The issue is ...
0
votes
1answer
117 views

lists:append/2 versus erlang:'++' /2, appending to end of list Versus appending to its Head

Of the two given pairs of comparisons, Which one (of each pair) is more expensive to System Resources in Erlang: Qn1: lists:append(L1,L2) versus erlang:'++'(L1,L2) Qn2 Writing to the head of a list ...
0
votes
1answer
39 views

OTP14B02 configure error

I have tried to install OTP14B02 on OpenSolaris and i get the following error at calling ./configure: muzaaya@opensolaris:~/Desktop/software and data/otp_src_R14B02# ./configure Ignoring the ...
0
votes
5answers
181 views

Erlang and JavaScript MD5 Digest match

Testing the Javascript Implementation of MD5 here: http://www.webtoolkit.info/javascript-md5.html gives the following output: MD5("muzaaya") = "00e081abefbbbf72b2d5258196a9b6d0" Going to my erlang ...
0
votes
1answer
83 views

Confused about Nitrogen listen IP address

Am running Nitrogen 2.0.X on Windows 7 Home Premium, HP Pavilion Entertainment PC Laptop. Nitrogen starts with inets and i have failed to change or dictate the IP address of the webserver. Once it ...
0
votes
0answers
138 views

run FastCGI applications through yaws

I am new to both fcgi and yaws. Any pointers to solution for following error would be very helpful I want to run FastCGI applications through yaws. I did following modifications for it in ...
0
votes
1answer
105 views

concurrent application

i have used erlang for the passed five month and i have liked it now it is my time to write down a concurrent application that will interact with the YAWS web server and mnesia DBMS and to work on a ...
0
votes
0answers
146 views

Mining the Social Web (Facebook, Twitter,YouTube,MySpace,Google,Amazon e.t.c) in Erlang/OTP? [closed]

has anyone written or have access to libraries in Erlang that connect to Cloud services such as those of Amazon, Facebook or Youtube (which he can share)?

1 2