mirror of
https://github.com/pgsty/minio.git
synced 2026-08-08 23:33:30 +03:00
Take all the ListObjects into bucket handlers
Earlier the listing would wait for all the objects to be processed this is essentially very time consuming considering even for 100,000 files.
This commit is contained in:
@@ -52,7 +52,7 @@ func filterNotDelimited(objects []string, delim string) []string {
|
||||
return results
|
||||
}
|
||||
|
||||
func extractDir(objects []string, delim string) []string {
|
||||
func extractDelimited(objects []string, delim string) []string {
|
||||
var results []string
|
||||
for _, object := range objects {
|
||||
parts := strings.Split(object, delim)
|
||||
|
||||
Reference in New Issue
Block a user