Lilith River

Results 256 comments of Lilith River

It's definitely something I want to have changed, but probably more integration tests would be needed. On Tue, Jul 4, 2023, 3:31 PM iJungleboy ***@***.***> wrote: > @lilith no problem,...

So it reproduces consistently with certain images? Can you email a few to ***@***.***? Also can you ensure imageflow.allplatforms is fully updated and access /imageflow.debug on the site? On Tue,...

Per https://github.com/aws/aws-sdk-net/issues/2546 the workaround is to specify `DefaultConfigurationMode = DefaultConfigurationMode.Standard` ``` services.AddAWSService(new AWSOptions { Credentials = new AnonymousAWSCredentials(), Region = RegionEndpoint.USEast1, DefaultConfigurationMode = DefaultConfigurationMode.Standard }); ```

There's [CustomBlobService.cs](https://github.com/imazen/imageflow-dotnet-server/blob/main/examples/Imageflow.Server.Example/CustomBlobService.cs) - It's not specific to SQL, but we made the API very simple.

Imageflow hasn't been audited by a third party firm for use with untrusted image files, thus the statement. That said, it's almost certainly safer than ImageMagick (check the rate of...

What are you wanting Imageflow to do with them? Any reason not to just use normal file serving. On Sat, Oct 16, 2021, 7:00 PM Greg ***@***.***> wrote: > Is...

To clarify: this would be to allow several different caches to be used for different purposes within the same process. Currently, each process can have one hybrid cache.

Since Azure and S3 offer object expiry, I could rely on developers to configure cache expiry and just implement cache misses and hits. That would be rather straightforward/easy to develop.

@AlexMedia That looks great! A couple tips: 1. You can reuse the s3 client, it's thread-safe. Amazon suggests reuse actually. So if you want, you can even rely on the...

BTW, are you using this in production or have you done any latency testing?