But why is it parsed so much faster? As you said it's also xml?

It's faster because you're removing a layer of indirection.

In SOAP you have an HTTP request/response that contains your SOAP envelope which contains your data/methods.

With a REST model you just have an HTTP request. What you're doing is defined by the URI and the HTTP request.

REST is a different way of modelling your distributed applications. You break down your application into URI accessible resources, each accessible with a common set of methods (traditionally HTTPs GET, PUT, etc.).

So rather than send a SOAP request to your central server with a next-job-id message, and getting a SOAP response that contains your job-id XML, you would just GET http://example.com/next-job-id/ and get your job-id XML as the response.

All you need to write REST applications in perl is LWP. If you want to learn more about REST I'd browse the list of resources on the RESTwiki. Takes some effort to get into the mindset, but it can provide some elegant solutions.


Update: and, of course, the data doesn't have to be XML. Use whatever seems appropriate / more efficient.


In reply to Re^5: Clustered Perl Applications? by adrianh
in thread Clustered Perl Applications? by sri

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.