launchdarkly / api-client-go

LaunchDarkly API Client for Go
Other
8 stars 12 forks source link

go client has mention of PHP #16

Closed Zamua closed 6 months ago

Zamua commented 6 months ago

This line mentions php. is this intentional?

Here's the string inlined:

The default time (in minutes) that the PHP SDK can cache feature flag rules locally
mmrj commented 6 months ago

Hi @Zamua ,

Thanks for your question! Yes, this is intentional.

The api-client-go is one of the generated client libraries we provide to make it a little easier to work with our REST API. You can use the REST API to perform functions that you might otherwise perform using the LaunchDarkly user interface.

The LaunchDarkly SDKs are for integrating LaunchDarkly with your application. When your application starts up, your code should initialize the LaunchDarkly SDK you're working with. When a customer encounters a feature flag in your application, your code should use the SDK to evaluate the feature flag and retrieve the appropriate flag variation.

The line you mention is a property that's specific to our PHP SDK, but returned by a request to our REST API. To learn more, read Comparing LaunchDarkly's SDKs and REST API.

Zamua commented 6 months ago

thanks! closing