Search code examples
amazon-web-servicesamazon-elasticacheserverless

About using AWS elasticache as a temporary git repository storage


I am developing a service that analyzes the git repository. It is being developed serverless. For repository analysis, I need to clone and save space temporarily. Is it possible to use aws elasticache as repository storage space?


Solution

  • you'd have to write code to copy all the files in the git repository into key value pairs to put in elastic cache

    elastic cache is great for a use case where several different services all want to read and write data at the same time at high speed

    For your use case, S3 might be a better choice