Jump to page: 1 2
Thread overview
So no one is using Amazon S3 with D, why?
Mar 14, 2017
aberba
Mar 14, 2017
ikod
Mar 15, 2017
aberba
May 10, 2019
yawniek
Mar 14, 2017
Jack Stouffer
Mar 14, 2017
Brad Roberts
Mar 14, 2017
Adam D. Ruppe
Mar 15, 2017
aberba
Mar 15, 2017
Suliman
[OT] cheap hosting
Mar 15, 2017
Jonathan M Davis
Mar 15, 2017
Sebastiaan Koppe
May 10, 2019
Pamella Morris
Mar 15, 2017
aberba
Mar 15, 2017
Sebastiaan Koppe
Mar 15, 2017
Johannes Pfau
March 14, 2017
Amazon S3 seem like a common solution for object storage these days[1] but I'm seeing almost no activity in this area (stable native D API). Why?

[1] https://trends.builtwith.com/cdn/Amazon-S3
March 14, 2017
On Tuesday, 14 March 2017 at 20:21:44 UTC, aberba wrote:
> Amazon S3 seem like a common solution for object storage these days[1] but I'm seeing almost no activity in this area (stable native D API). Why?
>
> [1] https://trends.builtwith.com/cdn/Amazon-S3

At least one package: https://code.dlang.org/packages/vibe-s3

March 14, 2017
On Tuesday, 14 March 2017 at 20:21:44 UTC, aberba wrote:
> Amazon S3 seem like a common solution for object storage these days[1] but I'm seeing almost no activity in this area (stable native D API). Why?
>
> [1] https://trends.builtwith.com/cdn/Amazon-S3

You can use S3 in its entirety with its REST API. I imagine people just make those calls with std.net.curl or something similar.
March 14, 2017
I've been in touch with the manager of the aws sdk team (he and I worked together for a while). He's willing to help with adding another language to the full sdk, but it'd be non-trivial.  There's a code generator (maybe more a generation language) involved that emits from a base service description for the entire suite of aws services.

It'd take some work to do the full sdk.  Ignoring all that and just doing a thin s3 specific api would be extremely easy since the api itself is so simple.  I have a quickly hacked together -- ie would do better on a new round -- for a specific tool:

     https://github.com/braddr/downloads.dlang.org

Ignore the tool on top of the code, it's out of date.

On 3/14/17 1:21 PM, aberba via Digitalmars-d wrote:
> Amazon S3 seem like a common solution for object storage these days[1] but I'm seeing almost no
> activity in this area (stable native D API). Why?
>
> [1] https://trends.builtwith.com/cdn/Amazon-S3
March 14, 2017
On Tuesday, 14 March 2017 at 20:21:44 UTC, aberba wrote:
> Amazon S3 seem like a common solution for object storage these days[1] but I'm seeing almost no activity in this area (stable native D API). Why?

I've done it before, but never posted the code in since it was just a quick and easy thing, about 50 lines total...

But I personally don't use it anyway, I only do for work stuff.
March 15, 2017
On Tuesday, 14 March 2017 at 20:21:44 UTC, aberba wrote:
> Amazon S3 seem like a common solution for object storage these days[1] but I'm seeing almost no activity in this area (stable native D API). Why?
>
> [1] https://trends.builtwith.com/cdn/Amazon-S3

How much the lowest vibed ready instance cost? I am looking for a cheapest solution for site.
March 15, 2017
On Wednesday, March 15, 2017 08:27:23 Suliman via Digitalmars-d wrote:
> On Tuesday, 14 March 2017 at 20:21:44 UTC, aberba wrote:
> > Amazon S3 seem like a common solution for object storage these days[1] but I'm seeing almost no activity in this area (stable native D API). Why?
> >
> > [1] https://trends.builtwith.com/cdn/Amazon-S3
>
> How much the lowest vibed ready instance cost? I am looking for a cheapest solution for site.

If you want a cheap solution for running a website, there's always digital ocean:

https://www.digitalocean.com/

You can run whatever you want on there quite easily. It's what I use when I want to spin up a server for something online.

- Jonathan M Davis

March 15, 2017
On Tuesday, 14 March 2017 at 20:38:37 UTC, ikod wrote:
> On Tuesday, 14 March 2017 at 20:21:44 UTC, aberba wrote:
>> Amazon S3 seem like a common solution for object storage these days[1] but I'm seeing almost no activity in this area (stable native D API). Why?
>>
>> [1] https://trends.builtwith.com/cdn/Amazon-S3
>
> At least one package: https://code.dlang.org/packages/vibe-s3

This is one has a nice implementation. The README does say it is unstable and I wonder which part was untested.
March 15, 2017
On Tuesday, 14 March 2017 at 21:09:23 UTC, Adam D. Ruppe wrote:
> On Tuesday, 14 March 2017 at 20:21:44 UTC, aberba wrote:
>> Amazon S3 seem like a common solution for object storage these days[1] but I'm seeing almost no activity in this area (stable native D API). Why?
>
> I've done it before, but never posted the code in since it was just a quick and easy thing, about 50 lines total...
>
> But I personally don't use it anyway, I only do for work stuff.

Can you github the code?
March 15, 2017
On Wednesday, 15 March 2017 at 08:27:23 UTC, Suliman wrote:
> On Tuesday, 14 March 2017 at 20:21:44 UTC, aberba wrote:
>> Amazon S3 seem like a common solution for object storage these days[1] but I'm seeing almost no activity in this area (stable native D API). Why?
>>
>> [1] https://trends.builtwith.com/cdn/Amazon-S3
>
> How much the lowest vibed ready instance cost? I am looking for a cheapest solution for site.

There are several options:
1. Heroku Paas with s3
2. Docker Datacenter with  your own image with dlanguage/dmd image as base.
3. Or hosting yourself on AWS or linode or digitaloceon. AWS is generally safe for small team with less resources. You may also look into Dokku (self-hosted Paas)
« First   ‹ Prev
1 2