Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is anyone using delimited continuations to do web development in Haskell?

Is anyone using delimited continuations for Haskell development, specifically web development? I find the topic fascinating I need something more accessible than what I've been studying.

Here are the resources I've found so far:

  • Shift To Control
  • The Haskell Wiki Page on Delimited Continuations
  • A Monadic Framework for Delimited Continuations
  • The Delimited Continuations topic on Oleg's page

Thanks!

-deech

like image 236
Deech Avatar asked Jun 13 '11 20:06

Deech


1 Answers

The neatest stuff that I know of regarding web servers and delimited continuations and such is going on in Racket -- see these papers from Jay A. McCarthy:

http://faculty.cs.byu.edu/~jay/static/oopsla026-mccarthy.pdf

http://faculty.cs.byu.edu/~jay/static/icfp065-mccarthy.pdf

like image 155
sclv Avatar answered Oct 13 '22 10:10

sclv