Re: [swift-users] Swift Concurrency and Actor model

2017-04-12 Thread Alex Blewitt via swift-users
> On 11 Apr 2017, at 23:37, Greg Parker via swift-users > wrote: > >> >> On Apr 11, 2017, at 9:10 AM, Gerard Iglesias via swift-users >> mailto:swift-users@swift.org>> wrote: >> >> Thanx for the link on this… >> >> I am experimenting the use of dispatch queue to mimic somme Actor Model >> t

Re: [swift-users] Swift Concurrency and Actor model

2017-04-11 Thread Greg Parker via swift-users
> On Apr 11, 2017, at 9:10 AM, Gerard Iglesias via swift-users > wrote: > > Thanx for the link on this… > > I am experimenting the use of dispatch queue to mimic somme Actor Model > things and it is not a bad idea, dispatch queue are perfect for that. > > I wonder what is the scalability of

Re: [swift-users] Swift Concurrency and Actor model

2017-04-11 Thread Gerard Iglesias via swift-users
Thanx for the link on this… I am experimenting the use of dispatch queue to mimic somme Actor Model things and it is not a bad idea, dispatch queue are perfect for that. I wonder what is the scalability of the Dispatch layer, are we able to create a bunch of dispatch queue without putting the s

Re: [swift-users] Swift Concurrency and Actor model

2017-04-10 Thread Maxim Veksler via swift-users
For networking you could use something like https://github.com/grpc/grpc-swift. On Mon, Apr 10, 2017 at 8:22 PM Gerard Iglesias wrote: > I was not aware .Net Core interesting ... > > Kotlin on an other side, we have already Scala and my objective is to see > on a real project how I can do the sa

Re: [swift-users] Swift Concurrency and Actor model

2017-04-10 Thread Gerard Iglesias via swift-users
I was not aware .Net Core interesting ... Kotlin on an other side, we have already Scala and my objective is to see on a real project how I can do the same with swift, not forced to have the same kind of technologies, but at the end able to deliver the same kind of capabilities and performances

Re: [swift-users] Swift Concurrency and Actor model

2017-04-10 Thread Gerard Iglesias via swift-users
My question was about if something has been made on this field, something like "scalable server in swift" that means somewhere cluster of swift server I will take a look to the discussion on the network API Thanx Gérard > Le 7 avr. 2017 à 22:52, Maxim Veksler a écrit : > > Hi Gerald, >

Re: [swift-users] Swift Concurrency and Actor model

2017-04-08 Thread Proyb P via swift-users
Yeah, I believe Gerard know that, he have been discussed in Vapor slack channel. To add on, Gerard might want to try .Net core and Kotlin. On Sat, Apr 8, 2017 at 4:52 AM, Maxim Veksler via swift-users < swift-users@swift.org> wrote: > Hi Gerald, > > It might be only me I'm not sure what you are

Re: [swift-users] Swift Concurrency and Actor model

2017-04-07 Thread Maxim Veksler via swift-users
Hi Gerald, It might be only me I'm not sure what you are suggesting. I would agree that Swift Server could benefit greatly from an Actor Model framework, and Swift in general would probably benefit greatly from co-routines. There is a Swift Server API's working group https://swift.org/server-apis

[swift-users] Swift Concurrency and Actor model

2017-04-02 Thread Gerard Iglesias via swift-users
Hi, I am working at the moment on a job which involves Scala and Akka, the kind of stuff which involve network, bid data, raw computing (Ai related) and scalability… Well buzz words of our time. I would like to make the like in the swift world… Swift, GCD, Vapor or Perfect… To conduct some ben