microsoftgraph / msgraph-cli-archived

The Microsoft Graph CLI repository has moved. This repository is now an archive.
https://github.com/microsoftgraph/msgraph-cli
Other
44 stars 9 forks source link

Use sqlite instead of a json file to store user information #62

Closed jobala closed 3 years ago

jobala commented 3 years ago

Using a json file is minimalistic and works but has the following shortcomings

  1. Updates are ineffecient because we have to perfom two file operations open & write.
  2. The current implemention for delete operations is hacky and should be improved.

Using a sqlite database solves both these issues for us.

AB#7668 AB#undefined

jobala commented 3 years ago

Closing this because once we move to azure-cli-core we won't need to manager how user information is stored.